Fix for panic in signature verification if a peer sends a nil public key.

This commit is contained in:
Zaki Manian
2019-09-20 09:37:49 -07:00
committed by Jack Zampolin
parent ff2308b5f4
commit 0354ea87f7
+5
View File
@@ -133,6 +133,11 @@ func MakeSecretConnection(conn io.ReadWriteCloser, locPrivKey crypto.PrivKey) (*
}
remPubKey, remSignature := authSigMsg.Key, authSigMsg.Sig
if remPubKey == nil {
return nil, errors.New("Peer sent a nil public key")
}
if !remPubKey.VerifyBytes(challenge[:], remSignature) {
return nil, errors.New("Challenge verification failed")
}