aboutsummaryrefslogtreecommitdiffstats
path: root/go/blscgo/bls.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/blscgo/bls.go')
-rw-r--r--go/blscgo/bls.go10
1 files changed, 1 insertions, 9 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) {