diff options
Diffstat (limited to 'crypto/p224_spake.cc')
-rw-r--r-- | crypto/p224_spake.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/p224_spake.cc b/crypto/p224_spake.cc index ec0c416..af3c2b8 100644 --- a/crypto/p224_spake.cc +++ b/crypto/p224_spake.cc @@ -99,6 +99,9 @@ P224EncryptedKeyExchange::P224EncryptedKeyExchange( PeerType peer_type, const base::StringPiece& password) : state_(kStateInitial), is_server_(peer_type == kPeerTypeServer) { + memset(&x_, 0, sizeof(x_)); + memset(&expected_authenticator_, 0, sizeof(expected_authenticator_)); + // x_ is a random scalar. base::RandBytes(x_, sizeof(x_)); |