This commit is contained in:
Zack Scholl 2018-06-30 14:54:29 -07:00
parent a9969b161f
commit f6abf9c4e8
1 changed files with 2 additions and 2 deletions

View File

@ -1,14 +1,14 @@
package pake package pake
import ( import (
"crypto/elliptic"
"testing" "testing"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/tscholl2/siec"
) )
func TestPake(t *testing.T) { func TestPake(t *testing.T) {
curve := elliptic.P521() //siec.SIEC255() curve := siec.SIEC255()
// successful (both have same k) // successful (both have same k)
// initialize A // initialize A
A, err := Init([]byte{1, 2, 3}, 0, curve) A, err := Init([]byte{1, 2, 3}, 0, curve)