goext/cryptext/aes_test.go

36 lines
507 B
Go
Raw Normal View History

2023-01-29 06:02:58 +01:00
package cryptext
2023-02-03 00:59:54 +01:00
import (
"fmt"
"testing"
)
2023-01-29 06:02:58 +01:00
func TestEncryptAESSimple(t *testing.T) {
pw := []byte("hunter12")
str1 := []byte("Hello World")
2023-02-03 00:59:54 +01:00
str2, err := EncryptAESSimple(pw, str1, 512)
2023-01-29 06:02:58 +01:00
if err != nil {
panic(err)
}
2023-02-03 00:59:54 +01:00
fmt.Printf("%s\n", str2)
2023-01-29 06:02:58 +01:00
str3, err := DecryptAESSimple(pw, str2)
if err != nil {
panic(err)
}
assertEqual(t, string(str1), string(str3))
2023-02-03 00:59:54 +01:00
str4, err := EncryptAESSimple(pw, str3, 512)
if err != nil {
panic(err)
}
assertNotEqual(t, string(str2), string(str4))
2023-01-29 06:02:58 +01:00
}