This repository has been archived on 2020-04-20. You can view files and clone it, but cannot push or open issues or pull requests.
libricochet-go/utils/crypto_test.go

20 lines
382 B
Go
Raw Normal View History

2017-11-04 20:31:37 +00:00
package utils
import (
"testing"
)
func TestGeneratePrivateKey(t *testing.T) {
_, err := GeneratePrivateKey()
if err != nil {
t.Errorf("Error while generating private key: %v", err)
}
2017-11-04 20:31:37 +00:00
}
func TestLoadPrivateKey(t *testing.T) {
_, err := LoadPrivateKeyFromFile("../testing/private_key")
if err != nil {
t.Errorf("Error while loading private key from file: %v", err)
}
2017-11-04 20:31:37 +00:00
}