Replace bytes.Equal -> subtle.ConstantTimeCompare

This commit is contained in:
Cole Brown 2019-07-10 15:30:22 -04:00
parent 2835a4015f
commit 2726b6493c
3 changed files with 7 additions and 7 deletions

View File

@ -115,7 +115,7 @@ func (ePriv *ECDSAPrivateKey) Raw() ([]byte, error) {
return x509.MarshalECPrivateKey(ePriv.priv)
}
// Equals compares to private keys
// Equals compares two private keys
func (ePriv *ECDSAPrivateKey) Equals(o Key) bool {
oPriv, ok := o.(*ECDSAPrivateKey)
if !ok {

View File

@ -1,7 +1,7 @@
package crypto
import (
"bytes"
"crypto/subtle"
"errors"
"fmt"
"io"
@ -70,7 +70,7 @@ func (k *Ed25519PrivateKey) Equals(o Key) bool {
return false
}
return bytes.Equal(k.k, edk.k)
return subtle.ConstantTimeCompare(k.k, edk.k) == 1
}
// GetPublic returns an ed25519 public key from a private key.
@ -105,7 +105,7 @@ func (k *Ed25519PublicKey) Equals(o Key) bool {
return false
}
return bytes.Equal(k.k, edk.k)
return subtle.ConstantTimeCompare(k.k, edk.k) == 1
}
// Verify checks a signature agains the input data.
@ -131,7 +131,7 @@ func UnmarshalEd25519PrivateKey(data []byte) (PrivKey, error) {
// Remove the redundant public key. See issue #36.
redundantPk := data[ed25519.PrivateKeySize:]
pk := data[ed25519.PrivateKeySize-ed25519.PublicKeySize : ed25519.PrivateKeySize]
if !bytes.Equal(pk, redundantPk) {
if subtle.ConstantTimeCompare(pk, redundantPk) != 1 {
return nil, errors.New("expected redundant ed25519 public key to be redundant")
}

View File

@ -4,12 +4,12 @@
package crypto
import (
"bytes"
"crypto/elliptic"
"crypto/hmac"
"crypto/rand"
"crypto/sha1"
"crypto/sha512"
"crypto/subtle"
"encoding/base64"
"errors"
"fmt"
@ -347,5 +347,5 @@ func KeyEqual(k1, k2 Key) bool {
b1, err1 := k1.Bytes()
b2, err2 := k2.Bytes()
return bytes.Equal(b1, b2) && err1 == err2
return subtle.ConstantTimeCompare(b1, b2) == 1 && err1 == err2
}