mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 16:54:16 +01:00
41 lines
658 B
Go
41 lines
658 B
Go
|
package signal
|
||
|
|
||
|
import (
|
||
|
"golang.zx2c4.com/wireguard/wgctrl/wgtypes"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestEncryptDecrypt(t *testing.T) {
|
||
|
strMsg := "message to encrypt"
|
||
|
bytesMsg := []byte(strMsg)
|
||
|
|
||
|
peerAKey, err := wgtypes.GenerateKey()
|
||
|
if err != nil {
|
||
|
t.Error()
|
||
|
return
|
||
|
}
|
||
|
|
||
|
peerBKey, err := wgtypes.GenerateKey()
|
||
|
if err != nil {
|
||
|
t.Error()
|
||
|
return
|
||
|
}
|
||
|
|
||
|
encryptedMessage, err := Encrypt(bytesMsg, peerBKey.PublicKey(), peerAKey)
|
||
|
if err != nil {
|
||
|
t.Error(err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
decryptedMessage, err := Decrypt(encryptedMessage, peerAKey.PublicKey(), peerBKey)
|
||
|
if err != nil {
|
||
|
t.Error(err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
if string(decryptedMessage) != strMsg {
|
||
|
t.Error()
|
||
|
}
|
||
|
|
||
|
}
|