mirror of
https://github.com/logos-messaging/go-rln.git
synced 2026-01-03 21:43:12 +00:00
16 lines
174 B
Go
16 lines
174 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/decanus/go-rln/rln"
|
|
)
|
|
|
|
func main() {
|
|
r := &rln.RLN{}
|
|
test := []byte{}
|
|
r.GenerateKey(test)
|
|
fmt.Printf("Test: %v", test)
|
|
//C
|
|
}
|