JCE: prepend zero byte to DH shared secret if less than prime length

pull/69/head
Chris Conlon 2024-03-19 14:55:20 -06:00
parent 0497ee767c
commit 05b4c9852a
2 changed files with 50 additions and 0 deletions

View File

@ -21,6 +21,7 @@
package com.wolfssl.provider.jce;
import java.util.Arrays;
import javax.crypto.KeyAgreementSpi;
import javax.crypto.SecretKey;
import javax.crypto.ShortBufferException;
@ -194,6 +195,33 @@ public class WolfCryptKeyAgreement extends KeyAgreementSpi {
secret = new byte[len];
System.arraycopy(tmp, 0, secret, 0, len);
/* DH shared secrets can vary in length depending on if they are
* padded or not at the beginning with zero bytes to make a total
* output size matching the prime length.
*
* Native wolfCrypt does not prepend zero bytes to DH shared
* secrets, following RFC 5246 (8.1.2) which instructs to strip
* leading zero bytes.
*
* Sun KeyAgreement DH implementations as of after Java 8
* prepend zero bytes if total length is not equal to prime length.
* This was changed with OpenJDK bug fix JDK-7146728.
*
* BouncyCastle also behaves the same way, prepending zero bytes
* if total secret size is not prime length. This follows
* RFC 2631 (2.1.2).
*
* To match Sun and BC behavior, we will follow the same here if
* running on a Java version later than Java 8.
*/
if (this.type == KeyAgreeType.WC_DH) {
tmp = new byte[this.primeLen];
Arrays.fill(tmp, (byte)0);
System.arraycopy(secret, 0, tmp,
tmp.length - secret.length, secret.length);
secret = tmp.clone();
}
} catch (ShortBufferException e) {
zeroArray(tmp);
zeroArray(secret);
@ -360,6 +388,12 @@ public class WolfCryptKeyAgreement extends KeyAgreementSpi {
this.dh.setParams(paramP, paramG);
primeLen = paramP.length;
/* prime may have leading zero */
if (paramP[0] == 0x00) {
primeLen--;
}
return;
} else {
@ -383,6 +417,11 @@ public class WolfCryptKeyAgreement extends KeyAgreementSpi {
primeLen = paramP.length;
/* prime may have leading zero */
if (paramP[0] == 0x00) {
primeLen--;
}
/* import private key */
dhPriv = dhKey.getX().toByteArray();
if (dhPriv == null) {

View File

@ -314,6 +314,17 @@ public class WolfCryptKeyAgreementTest {
byte secretA[] = aKeyAgree.generateSecret();
byte secretB[] = bKeyAgree.generateSecret();
/* Older versions of Java did not prepend a zero byte to shared
* secrets that were smaller than the prime length. This was
* changed in SunJCE as of JDK-7146728, but we may be running this
* test on an older version that does not prepend the zero byte.
* Since wolfJCE does prepend the zero byte, for the sake of this
* interop test, we strip the zero byte from wolfJCE's secret
* if lengths are different and try to compare that. */
if (secretB.length == (secretA.length - 1)) {
secretA = Arrays.copyOfRange(secretA, 1, secretA.length);
}
if (secretA.length != secretB.length) {
int i = 0;
System.out.println("secretA.length != secretB.length");