Initial import

This commit is contained in:
2026-02-14 15:59:31 +01:00
parent 05dcea3c2b
commit f1ecbfaf8d
19 changed files with 2675 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package crypto
import (
"testing"
)
func TestKey(t *testing.T) {
pub, key, err := GenerateKey()
if err != nil {
t.Fatal(err)
}
t.Logf("key: %s", key.HexString())
t.Logf("pub: %s", pub)
}