Parcourir la source

OpenSSL: Fix public key length in DH group 5 operations

The length of the prime was used incorrectly and this resulted
in WPS DH operation failing whenever the public key ended up having
leading zeros (i.e., about every 1/256th time).
Jouni Malinen il y a 14 ans
Parent
commit
cc91e07e57
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/crypto/crypto_openssl.c

+ 1 - 1
src/crypto/crypto_openssl.c

@@ -434,7 +434,7 @@ void * dh5_init(struct wpabuf **priv, struct wpabuf **publ)
 	if (DH_generate_key(dh) != 1)
 		goto err;
 
-	publen = BN_num_bytes(dh->p);
+	publen = BN_num_bytes(dh->pub_key);
 	pubkey = wpabuf_alloc(publen);
 	if (pubkey == NULL)
 		goto err;