From f64a67ab06aded2609e51078e8b8db6db87b7b7a Mon Sep 17 00:00:00 2001 From: MITSUNARI Shigeo Date: Mon, 5 Jun 2017 22:14:34 +0900 Subject: use mclBn_Curve --- go/bls/bls.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/go/bls/bls.go b/go/bls/bls.go index e2421c5..d516bb1 100644 --- a/go/bls/bls.go +++ b/go/bls/bls.go @@ -10,13 +10,13 @@ import "fmt" import "unsafe" // CurveFp254BNb -- 254 bit curve -const CurveFp254BNb = 0 +const CurveFp254BNb = C.mclBn_CurveFp254BNb // CurveFp382_1 -- 382 bit curve 1 -const CurveFp382_1 = 1 +const CurveFp382_1 = C.mclBn_CurveFp382_1 // CurveFp382_2 -- 382 bit curve 2 -const CurveFp382_2 = 2 +const CurveFp382_2 = C.mclBn_CurveFp382_2 // Init -- // call this function before calling all the other operations @@ -150,7 +150,7 @@ type SecretKey struct { // getPointer -- func (sec *SecretKey) getPointer() (p *C.blsSecretKey) { // #nosec - return (*C.blsSecretKey)(unsafe.Pointer(&sec.v[0])) + return (*C.blsSecretKey)(unsafe.Pointer(sec)) } // GetLittleEndian -- -- cgit v1.2.3