2022-04-08 05:59:40 +02:00
|
|
|
package data
|
2022-01-09 06:59:28 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2022-04-08 05:59:40 +02:00
|
|
|
|
|
|
|
"github.com/ddworken/hishtory/shared"
|
2022-01-09 06:59:28 +01:00
|
|
|
)
|
|
|
|
|
2022-04-03 07:27:20 +02:00
|
|
|
func TestEncryptDecrypt(t *testing.T) {
|
2022-04-08 05:59:40 +02:00
|
|
|
k1 := EncryptionKey("key")
|
|
|
|
k2 := EncryptionKey("key")
|
2022-04-03 07:27:20 +02:00
|
|
|
if string(k1) != string(k2) {
|
|
|
|
t.Fatalf("Expected EncryptionKey to be deterministic!")
|
|
|
|
}
|
|
|
|
|
|
|
|
ciphertext, nonce, err := Encrypt("key", []byte("hello world!"), []byte("extra"))
|
2022-04-08 05:59:40 +02:00
|
|
|
shared.Check(t, err)
|
2022-04-03 07:27:20 +02:00
|
|
|
plaintext, err := Decrypt("key", ciphertext, []byte("extra"), nonce)
|
2022-04-08 05:59:40 +02:00
|
|
|
shared.Check(t, err)
|
2022-04-03 07:27:20 +02:00
|
|
|
if string(plaintext) != "hello world!" {
|
|
|
|
t.Fatalf("Expected decrypt(encrypt(x)) to work, but it didn't!")
|
|
|
|
}
|
|
|
|
}
|