mirror of
https://github.com/logos-messaging/go-rln.git
synced 2026-01-03 21:43:12 +00:00
11 lines
120 B
Go
11 lines
120 B
Go
package rln
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestHash(t *testing.T) {
|
|
rln := New(0, []byte{})
|
|
rln.Hash([]byte{1, 2, 3})
|
|
}
|