aboutsummaryrefslogtreecommitdiffstats
path: root/go
diff options
context:
space:
mode:
Diffstat (limited to 'go')
-rw-r--r--go/blscgo/bls.go10
-rw-r--r--go/main_test.go4
2 files changed, 1 insertions, 13 deletions
diff --git a/go/blscgo/bls.go b/go/blscgo/bls.go
index 170146c..5873f38 100644
--- a/go/blscgo/bls.go
+++ b/go/blscgo/bls.go
@@ -251,7 +251,7 @@ func (sec *SecretKey) GetPublicKey() (pub *PublicKey) {
return pub
}
-// Sign --
+// Constant Time Sign --
func (sec *SecretKey) Sign(m string) (sign *Sign) {
sign = new(Sign)
buf := []byte(m)
@@ -259,14 +259,6 @@ func (sec *SecretKey) Sign(m string) (sign *Sign) {
C.blsSecretKeySign(sec.getPointer(), sign.getPointer(), (*C.char)(unsafe.Pointer(&buf[0])), C.size_t(len(buf)))
return sign
}
-// Constant Time Sign --
-func (sec *SecretKey) SignCT(m string) (sign *Sign) {
- sign = new(Sign)
- buf := []byte(m)
- // #nosec
- C.blsSecretKeySignCT(sec.getPointer(), sign.getPointer(), (*C.char)(unsafe.Pointer(&buf[0])), C.size_t(len(buf)))
- return sign
-}
// Add --
func (sign *Sign) Add(rhs *Sign) {
diff --git a/go/main_test.go b/go/main_test.go
index 091a75b..a103ba2 100644
--- a/go/main_test.go
+++ b/go/main_test.go
@@ -72,10 +72,6 @@ func testSign(t *testing.T) {
}
signVec[i] = *secVec[i].Sign(m)
- s := *secVec[i].SignCT(m)
- if signVec[i].String() != s.String() {
- t.Fatal("SingCT %d", i)
- }
if !signVec[i].Verify(&pubVec[i], m) {
t.Fatal("singVec %d", i)
}