go-rln/rln.go

16 lines
174 B
Go
Raw Normal View History

2021-09-13 13:37:42 +02:00
package main
2021-09-13 18:41:52 +02:00
import (
"fmt"
"github.com/decanus/go-rln/rln"
)
2021-09-13 13:37:42 +02:00
func main() {
2021-09-13 17:15:25 +02:00
r := &rln.RLN{}
2021-09-13 18:41:52 +02:00
test := []byte{}
r.GenerateKey(test)
fmt.Printf("Test: %v", test)
2021-09-13 16:42:26 +02:00
//C
2021-09-13 13:37:42 +02:00
}