mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-11-29 17:01:01 +01:00
fix(aes-encryption): support plain txt and url safe base64 strings
Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>
This commit is contained in:
parent
e964a66153
commit
ad226caeb9
@ -78,14 +78,25 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
key := []byte("testtesttesttesttesttesttesttest")
|
keys := []string{
|
||||||
encrypted, _ := endpoint.EncryptText(
|
"ZPitL0NGVQBZbTD6DwXJzD8RiStSazzYXQsdUowLURY=", // safe base64 url encoded 44 bytes and 32 when decoded
|
||||||
"heritage=external-dns,external-dns/owner=example,external-dns/resource=ingress/default/example",
|
"01234567890123456789012345678901", // plain txt 32 bytes
|
||||||
key,
|
"passphrasewhichneedstobe32bytes!", // plain txt 32 bytes
|
||||||
nil,
|
}
|
||||||
)
|
|
||||||
decrypted, _, _ := endpoint.DecryptText(encrypted, key)
|
for _, k := range keys {
|
||||||
fmt.Println(decrypted)
|
key := []byte(k)
|
||||||
|
encrypted, _ := endpoint.EncryptText(
|
||||||
|
"heritage=external-dns,external-dns/owner=example,external-dns/resource=ingress/default/example",
|
||||||
|
key,
|
||||||
|
nil,
|
||||||
|
)
|
||||||
|
decrypted, _, err := endpoint.DecryptText(encrypted, key)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println("Error decrypting:", err, "for key:", k)
|
||||||
|
}
|
||||||
|
fmt.Println(decrypted)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user