aboutsummaryrefslogtreecommitdiff
path: root/gen_test.go
blob: 8f8bbba9c14969fe2017e0068691e2c66581be27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package main

import "testing"

func TestNewKey(t *testing.T) {
	pub, sec, err := NewKey()
	if err != nil {
		t.Error(err)
	}
	t.Log(pub)
	t.Log(sec)
}