mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 08:27:31 +09:00
nss: update to 3.44.1, with vc2013 fix and gyp fix
This commit is contained in:
parent
a2ef5fcde7
commit
d4b834111b
553 changed files with 1515569 additions and 1130 deletions
|
|
@ -1013,6 +1013,10 @@ extern SECStatus ChaCha20Poly1305_Open(
|
|||
const unsigned char *nonce, unsigned int nonceLen,
|
||||
const unsigned char *ad, unsigned int adLen);
|
||||
|
||||
extern SECStatus ChaCha20_Xor(
|
||||
unsigned char *output, const unsigned char *block, unsigned int len,
|
||||
const unsigned char *k, const unsigned char *nonce, PRUint32 ctr);
|
||||
|
||||
/******************************************/
|
||||
/*
|
||||
** MD5 secure hash function
|
||||
|
|
|
|||
|
|
@ -92,23 +92,32 @@ CheckX86CPUSupport()
|
|||
#endif /* NSS_X86_OR_X64 */
|
||||
|
||||
/* clang-format off */
|
||||
#if (defined(__aarch64__) || defined(__arm__)) && !defined(__ANDROID__)
|
||||
#if defined(__aarch64__) || defined(__arm__)
|
||||
#ifndef __has_include
|
||||
#define __has_include(x) 0
|
||||
#endif
|
||||
#if (__has_include(<sys/auxv.h>) || defined(__linux__)) && \
|
||||
defined(__GNUC__) && __GNUC__ >= 2 && defined(__ELF__)
|
||||
/* This might be conflict with host compiler */
|
||||
#if !defined(__ANDROID__)
|
||||
#include <sys/auxv.h>
|
||||
#endif
|
||||
extern unsigned long getauxval(unsigned long type) __attribute__((weak));
|
||||
#else
|
||||
static unsigned long (*getauxval)(unsigned long) = NULL;
|
||||
#define AT_HWCAP2 0
|
||||
#define AT_HWCAP 0
|
||||
#endif /* defined(__GNUC__) && __GNUC__ >= 2 && defined(__ELF__)*/
|
||||
#endif /* (defined(__aarch64__) || defined(__arm__)) && !defined(__ANDROID__) */
|
||||
|
||||
#ifndef AT_HWCAP2
|
||||
#define AT_HWCAP2 26
|
||||
#endif
|
||||
#ifndef AT_HWCAP
|
||||
#define AT_HWCAP 16
|
||||
#endif
|
||||
|
||||
#endif /* defined(__aarch64__) || defined(__arm__) */
|
||||
/* clang-format on */
|
||||
|
||||
#if defined(__aarch64__) && !defined(__ANDROID__)
|
||||
#if defined(__aarch64__)
|
||||
// Defines from hwcap.h in Linux kernel - ARM64
|
||||
#ifndef HWCAP_AES
|
||||
#define HWCAP_AES (1 << 3)
|
||||
|
|
@ -138,9 +147,9 @@ CheckARMSupport()
|
|||
/* aarch64 must support NEON. */
|
||||
arm_neon_support_ = disable_arm_neon == NULL;
|
||||
}
|
||||
#endif /* defined(__aarch64__) && !defined(__ANDROID__) */
|
||||
#endif /* defined(__aarch64__) */
|
||||
|
||||
#if defined(__arm__) && !defined(__ANDROID__)
|
||||
#if defined(__arm__)
|
||||
// Defines from hwcap.h in Linux kernel - ARM
|
||||
/*
|
||||
* HWCAP flags - for elf_hwcap (in kernel) and AT_HWCAP
|
||||
|
|
@ -165,23 +174,58 @@ CheckARMSupport()
|
|||
#define HWCAP2_SHA2 (1 << 3)
|
||||
#endif
|
||||
|
||||
PRBool
|
||||
GetNeonSupport()
|
||||
{
|
||||
char *disable_arm_neon = PR_GetEnvSecure("NSS_DISABLE_ARM_NEON");
|
||||
if (disable_arm_neon) {
|
||||
return PR_FALSE;
|
||||
}
|
||||
#if defined(__ARM_NEON) || defined(__ARM_NEON__)
|
||||
// Compiler generates NEON instruction as default option.
|
||||
// If no getauxval, compiler generate NEON instruction by default,
|
||||
// we should allow NOEN support.
|
||||
return PR_TRUE;
|
||||
#elif !defined(__ANDROID__)
|
||||
// Android's cpu-features.c detects features by the following logic
|
||||
//
|
||||
// - Call getauxval(AT_HWCAP)
|
||||
// - Parse /proc/self/auxv if getauxval is nothing or returns 0
|
||||
// - Parse /proc/cpuinfo if both cannot detect features
|
||||
//
|
||||
// But we don't use it for Android since Android document
|
||||
// (https://developer.android.com/ndk/guides/cpu-features) says
|
||||
// one problem with AT_HWCAP sometimes devices (Nexus 4 and emulator)
|
||||
// are mistaken for IDIV.
|
||||
if (getauxval) {
|
||||
return (getauxval(AT_HWCAP) & HWCAP_NEON);
|
||||
}
|
||||
#endif /* defined(__ARM_NEON) || defined(__ARM_NEON__) */
|
||||
return PR_FALSE;
|
||||
}
|
||||
|
||||
void
|
||||
CheckARMSupport()
|
||||
{
|
||||
char *disable_arm_neon = PR_GetEnvSecure("NSS_DISABLE_ARM_NEON");
|
||||
char *disable_hw_aes = PR_GetEnvSecure("NSS_DISABLE_HW_AES");
|
||||
if (getauxval) {
|
||||
// Android's cpu-features.c uses AT_HWCAP2 for newer features.
|
||||
// AT_HWCAP2 is implemented on newer devices / kernel, so we can trust
|
||||
// it since cpu-features.c doesn't have workaround / fallback.
|
||||
// Also, AT_HWCAP2 is supported by glibc 2.18+ on Linux/arm, If
|
||||
// AT_HWCAP2 isn't supported by glibc or Linux kernel, getauxval will
|
||||
// returns 0.
|
||||
long hwcaps = getauxval(AT_HWCAP2);
|
||||
arm_aes_support_ = hwcaps & HWCAP2_AES && disable_hw_aes == NULL;
|
||||
arm_pmull_support_ = hwcaps & HWCAP2_PMULL;
|
||||
arm_sha1_support_ = hwcaps & HWCAP2_SHA1;
|
||||
arm_sha2_support_ = hwcaps & HWCAP2_SHA2;
|
||||
arm_neon_support_ = hwcaps & HWCAP_NEON && disable_arm_neon == NULL;
|
||||
}
|
||||
arm_neon_support_ = GetNeonSupport();
|
||||
}
|
||||
#endif /* defined(__arm__) && !defined(__ANDROID__) */
|
||||
#endif /* defined(__arm__) */
|
||||
|
||||
// Enable when Firefox can use it.
|
||||
// Enable when Firefox can use it for Android API 16 and 17.
|
||||
// #if defined(__ANDROID__) && (defined(__arm__) || defined(__aarch64__))
|
||||
// #include <cpu-features.h>
|
||||
// void
|
||||
|
|
@ -262,7 +306,7 @@ FreeblInit(void)
|
|||
{
|
||||
#ifdef NSS_X86_OR_X64
|
||||
CheckX86CPUSupport();
|
||||
#elif (defined(__aarch64__) || defined(__arm__)) && !defined(__ANDROID__)
|
||||
#elif (defined(__aarch64__) || defined(__arm__))
|
||||
CheckARMSupport();
|
||||
#endif
|
||||
return PR_SUCCESS;
|
||||
|
|
|
|||
|
|
@ -157,6 +157,7 @@ ChaCha20Poly1305_DestroyContext(ChaCha20Poly1305Context *ctx, PRBool freeit)
|
|||
#endif
|
||||
}
|
||||
|
||||
#ifndef NSS_DISABLE_CHACHAPOLY
|
||||
void
|
||||
ChaCha20Xor(uint8_t *output, uint8_t *block, uint32_t len, uint8_t *k,
|
||||
uint8_t *nonce, uint32_t ctr)
|
||||
|
|
@ -167,6 +168,25 @@ ChaCha20Xor(uint8_t *output, uint8_t *block, uint32_t len, uint8_t *k,
|
|||
Hacl_Chacha20_chacha20(output, block, len, k, nonce, ctr);
|
||||
}
|
||||
}
|
||||
#endif /* NSS_DISABLE_CHACHAPOLY */
|
||||
|
||||
SECStatus
|
||||
ChaCha20_Xor(unsigned char *output, const unsigned char *block, unsigned int len,
|
||||
const unsigned char *k, const unsigned char *nonce, PRUint32 ctr)
|
||||
{
|
||||
#ifdef NSS_DISABLE_CHACHAPOLY
|
||||
return SECFailure;
|
||||
#else
|
||||
// ChaCha has a 64 octet block, with a 32-bit block counter.
|
||||
if (sizeof(len) > 4 && len >= (1ULL << (6 + 32))) {
|
||||
PORT_SetError(SEC_ERROR_INPUT_LEN);
|
||||
return SECFailure;
|
||||
}
|
||||
ChaCha20Xor(output, (uint8_t *)block, len, (uint8_t *)k,
|
||||
(uint8_t *)nonce, ctr);
|
||||
return SECSuccess;
|
||||
#endif
|
||||
}
|
||||
|
||||
SECStatus
|
||||
ChaCha20Poly1305_Seal(const ChaCha20Poly1305Context *ctx, unsigned char *output,
|
||||
|
|
@ -185,6 +205,11 @@ ChaCha20Poly1305_Seal(const ChaCha20Poly1305Context *ctx, unsigned char *output,
|
|||
PORT_SetError(SEC_ERROR_INPUT_LEN);
|
||||
return SECFailure;
|
||||
}
|
||||
// ChaCha has a 64 octet block, with a 32-bit block counter.
|
||||
if (sizeof(inputLen) > 4 && inputLen >= (1ULL << (6 + 32))) {
|
||||
PORT_SetError(SEC_ERROR_INPUT_LEN);
|
||||
return SECFailure;
|
||||
}
|
||||
*outputLen = inputLen + ctx->tagLen;
|
||||
if (maxOutputLen < *outputLen) {
|
||||
PORT_SetError(SEC_ERROR_OUTPUT_LEN);
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ swap8b(PRUint64 value)
|
|||
return (value);
|
||||
}
|
||||
|
||||
#elif !defined(_MSC_VER)
|
||||
#elif defined(IS_LITTLE_ENDIAN) && !defined(_MSC_VER) && !__has_builtin(__builtin_bswap64) && !((defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))))
|
||||
|
||||
PRUint64
|
||||
swap8b(PRUint64 x)
|
||||
|
|
|
|||
|
|
@ -11,6 +11,11 @@
|
|||
#include <stdlib.h>
|
||||
#include "prtypes.h"
|
||||
|
||||
/* For non-clang platform */
|
||||
#ifndef __has_builtin
|
||||
#define __has_builtin(x) 0
|
||||
#endif
|
||||
|
||||
/* Unfortunately this isn't always set when it should be. */
|
||||
#if defined(HAVE_LONG_LONG)
|
||||
|
||||
|
|
@ -29,11 +34,17 @@
|
|||
/*
|
||||
* FREEBL_HTONLL(x): swap bytes in a 64-bit integer.
|
||||
*/
|
||||
#if defined(IS_LITTLE_ENDIAN)
|
||||
#if defined(_MSC_VER)
|
||||
|
||||
#pragma intrinsic(_byteswap_uint64)
|
||||
#define FREEBL_HTONLL(x) _byteswap_uint64(x)
|
||||
|
||||
/* gcc doesn't have __has_builtin, but it does have __builtin_bswap64 */
|
||||
#elif __has_builtin(__builtin_bswap64) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)))
|
||||
|
||||
#define FREEBL_HTONLL(x) __builtin_bswap64(x)
|
||||
|
||||
#elif defined(__GNUC__) && (defined(__x86_64__) || defined(__x86_64))
|
||||
|
||||
PRUint64 swap8b(PRUint64 value);
|
||||
|
|
@ -48,4 +59,8 @@ PRUint64 swap8b(PRUint64 x);
|
|||
|
||||
#endif /* _MSC_VER */
|
||||
|
||||
#endif /* HAVE_LONG_LONG */
|
||||
#else /* IS_LITTLE_ENDIAN */
|
||||
#define FREEBL_HTONLL(x) (x)
|
||||
#endif
|
||||
|
||||
#endif /* HAVE_LONG_LONG */
|
||||
|
|
|
|||
|
|
@ -210,7 +210,8 @@ DH_Derive(SECItem *publicValue,
|
|||
unsigned int len = 0;
|
||||
unsigned int nb;
|
||||
unsigned char *secret = NULL;
|
||||
if (!publicValue || !prime || !privateValue || !derivedSecret) {
|
||||
if (!publicValue || !publicValue->len || !prime || !prime->len ||
|
||||
!privateValue || !privateValue->len || !derivedSecret) {
|
||||
PORT_SetError(SEC_ERROR_INVALID_ARGS);
|
||||
return SECFailure;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -202,8 +202,8 @@ ec_NewKey(ECParams *ecParams, ECPrivateKey **privKey,
|
|||
#endif
|
||||
MP_DIGITS(&k) = 0;
|
||||
|
||||
if (!ecParams || !privKey || !privKeyBytes || (privKeyLen < 0) ||
|
||||
!ecParams->name) {
|
||||
if (!ecParams || ecParams->name == ECCurve_noName ||
|
||||
!privKey || !privKeyBytes || privKeyLen <= 0) {
|
||||
PORT_SetError(SEC_ERROR_INVALID_ARGS);
|
||||
return SECFailure;
|
||||
}
|
||||
|
|
@ -391,7 +391,7 @@ EC_NewKey(ECParams *ecParams, ECPrivateKey **privKey)
|
|||
int len;
|
||||
unsigned char *privKeyBytes = NULL;
|
||||
|
||||
if (!ecParams) {
|
||||
if (!ecParams || ecParams->name == ECCurve_noName || !privKey) {
|
||||
PORT_SetError(SEC_ERROR_INVALID_ARGS);
|
||||
return SECFailure;
|
||||
}
|
||||
|
|
@ -430,7 +430,8 @@ EC_ValidatePublicKey(ECParams *ecParams, SECItem *publicValue)
|
|||
mp_err err = MP_OKAY;
|
||||
int len;
|
||||
|
||||
if (!ecParams || !publicValue || !ecParams->name) {
|
||||
if (!ecParams || ecParams->name == ECCurve_noName ||
|
||||
!publicValue || !publicValue->len) {
|
||||
PORT_SetError(SEC_ERROR_INVALID_ARGS);
|
||||
return SECFailure;
|
||||
}
|
||||
|
|
@ -536,8 +537,9 @@ ECDH_Derive(SECItem *publicValue,
|
|||
int i;
|
||||
#endif
|
||||
|
||||
if (!publicValue || !ecParams || !privateValue || !derivedSecret ||
|
||||
!ecParams->name) {
|
||||
if (!publicValue || !publicValue->len ||
|
||||
!ecParams || ecParams->name == ECCurve_noName ||
|
||||
!privateValue || !privateValue->len || !derivedSecret) {
|
||||
PORT_SetError(SEC_ERROR_INVALID_ARGS);
|
||||
return SECFailure;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -114,6 +114,9 @@ ec_Curve25519_pt_mul(SECItem *X, SECItem *k, SECItem *P)
|
|||
}
|
||||
px = P->data;
|
||||
}
|
||||
if (k->len != 32) {
|
||||
return SECFailure;
|
||||
}
|
||||
|
||||
SECStatus rv = ec_Curve25519_mul(X->data, k->data, px);
|
||||
if (NSS_SecureMemcmpZero(X->data, X->len) == 0) {
|
||||
|
|
|
|||
|
|
@ -15,8 +15,10 @@
|
|||
#include "seccomon.h" /* Required for RSA and DSA. */
|
||||
#include "secerr.h"
|
||||
#include "prtypes.h"
|
||||
#include "secitem.h"
|
||||
#include "pkcs11t.h"
|
||||
|
||||
#include "ec.h" /* Required for ECDSA */
|
||||
#include "ec.h" /* Required for EC */
|
||||
|
||||
/*
|
||||
* different platforms have different ways of calling and initial entry point
|
||||
|
|
@ -288,6 +290,8 @@ freebl_fips_AES_PowerUpSelfTest(int aes_key_size)
|
|||
/* AES Known Plaintext (128-bits). (blocksize is 128-bits) */
|
||||
static const PRUint8 aes_known_plaintext[] = { "NetscapeepacsteN" };
|
||||
|
||||
static const PRUint8 aes_gcm_known_aad[] = { "MozillaallizoM" };
|
||||
|
||||
/* AES Known Ciphertext (128-bit key). */
|
||||
static const PRUint8 aes_ecb128_known_ciphertext[] = {
|
||||
0x3c, 0xa5, 0x96, 0xf3, 0x34, 0x6a, 0x96, 0xc1,
|
||||
|
|
@ -299,6 +303,13 @@ freebl_fips_AES_PowerUpSelfTest(int aes_key_size)
|
|||
0x15, 0x54, 0x14, 0x1d, 0x4e, 0xd8, 0xd5, 0xea
|
||||
};
|
||||
|
||||
static const PRUint8 aes_gcm128_known_ciphertext[] = {
|
||||
0x63, 0xf4, 0x95, 0x28, 0xe6, 0x78, 0xee, 0x6e,
|
||||
0x4f, 0xe0, 0xfc, 0x8d, 0xd7, 0xa2, 0xb1, 0xff,
|
||||
0x0c, 0x97, 0x1b, 0x0a, 0xdd, 0x97, 0x75, 0xed,
|
||||
0x8b, 0xde, 0xbf, 0x16, 0x5e, 0x57, 0x6b, 0x4f
|
||||
};
|
||||
|
||||
/* AES Known Ciphertext (192-bit key). */
|
||||
static const PRUint8 aes_ecb192_known_ciphertext[] = {
|
||||
0xa0, 0x18, 0x62, 0xed, 0x88, 0x19, 0xcb, 0x62,
|
||||
|
|
@ -310,6 +321,13 @@ freebl_fips_AES_PowerUpSelfTest(int aes_key_size)
|
|||
0x07, 0xbc, 0x43, 0x2f, 0x6d, 0xad, 0x29, 0xe1
|
||||
};
|
||||
|
||||
static const PRUint8 aes_gcm192_known_ciphertext[] = {
|
||||
0xc1, 0x0b, 0x92, 0x1d, 0x68, 0x21, 0xf4, 0x25,
|
||||
0x41, 0x61, 0x20, 0x2d, 0x59, 0x7f, 0x53, 0xde,
|
||||
0x93, 0x39, 0xab, 0x09, 0x76, 0x41, 0x57, 0x2b,
|
||||
0x90, 0x2e, 0x44, 0xbb, 0x52, 0x03, 0xe9, 0x07
|
||||
};
|
||||
|
||||
/* AES Known Ciphertext (256-bit key). */
|
||||
static const PRUint8 aes_ecb256_known_ciphertext[] = {
|
||||
0xdb, 0xa6, 0x52, 0x01, 0x8a, 0x70, 0xae, 0x66,
|
||||
|
|
@ -321,18 +339,29 @@ freebl_fips_AES_PowerUpSelfTest(int aes_key_size)
|
|||
0xc5, 0xc5, 0x68, 0x71, 0x6e, 0x34, 0x40, 0x16
|
||||
};
|
||||
|
||||
static const PRUint8 aes_gcm256_known_ciphertext[] = {
|
||||
0x5d, 0x9e, 0xd2, 0xa2, 0x74, 0x9c, 0xd9, 0x1c,
|
||||
0xd1, 0xc9, 0xee, 0x5d, 0xb6, 0xf2, 0xc9, 0xb6,
|
||||
0x79, 0x27, 0x53, 0x02, 0xa3, 0xdc, 0x22, 0xce,
|
||||
0xf4, 0xb0, 0xc1, 0x8c, 0x86, 0x51, 0xf5, 0xa1
|
||||
};
|
||||
|
||||
const PRUint8 *aes_ecb_known_ciphertext =
|
||||
(aes_key_size == FIPS_AES_128_KEY_SIZE) ? aes_ecb128_known_ciphertext : (aes_key_size == FIPS_AES_192_KEY_SIZE) ? aes_ecb192_known_ciphertext : aes_ecb256_known_ciphertext;
|
||||
|
||||
const PRUint8 *aes_cbc_known_ciphertext =
|
||||
(aes_key_size == FIPS_AES_128_KEY_SIZE) ? aes_cbc128_known_ciphertext : (aes_key_size == FIPS_AES_192_KEY_SIZE) ? aes_cbc192_known_ciphertext : aes_cbc256_known_ciphertext;
|
||||
|
||||
const PRUint8 *aes_gcm_known_ciphertext =
|
||||
(aes_key_size == FIPS_AES_128_KEY_SIZE) ? aes_gcm128_known_ciphertext : (aes_key_size == FIPS_AES_192_KEY_SIZE) ? aes_gcm192_known_ciphertext : aes_gcm256_known_ciphertext;
|
||||
|
||||
/* AES variables. */
|
||||
PRUint8 aes_computed_ciphertext[FIPS_AES_ENCRYPT_LENGTH];
|
||||
PRUint8 aes_computed_plaintext[FIPS_AES_DECRYPT_LENGTH];
|
||||
PRUint8 aes_computed_ciphertext[FIPS_AES_ENCRYPT_LENGTH * 2];
|
||||
PRUint8 aes_computed_plaintext[FIPS_AES_DECRYPT_LENGTH * 2];
|
||||
AESContext *aes_context;
|
||||
unsigned int aes_bytes_encrypted;
|
||||
unsigned int aes_bytes_decrypted;
|
||||
CK_GCM_PARAMS gcmParams;
|
||||
SECStatus aes_status;
|
||||
|
||||
/*check if aes_key_size is 128, 192, or 256 bits */
|
||||
|
|
@ -455,6 +484,69 @@ freebl_fips_AES_PowerUpSelfTest(int aes_key_size)
|
|||
return (SECFailure);
|
||||
}
|
||||
|
||||
/******************************************************/
|
||||
/* AES-GCM Single-Round Known Answer Encryption Test. */
|
||||
/******************************************************/
|
||||
|
||||
gcmParams.pIv = (PRUint8 *)aes_cbc_known_initialization_vector;
|
||||
gcmParams.ulIvLen = FIPS_AES_BLOCK_SIZE;
|
||||
gcmParams.pAAD = (PRUint8 *)aes_gcm_known_aad;
|
||||
gcmParams.ulAADLen = sizeof(aes_gcm_known_aad);
|
||||
gcmParams.ulTagBits = FIPS_AES_BLOCK_SIZE * 8;
|
||||
aes_context = AES_CreateContext(aes_known_key,
|
||||
(PRUint8 *)&gcmParams,
|
||||
NSS_AES_GCM, PR_TRUE, aes_key_size,
|
||||
FIPS_AES_BLOCK_SIZE);
|
||||
|
||||
if (aes_context == NULL) {
|
||||
PORT_SetError(SEC_ERROR_NO_MEMORY);
|
||||
return (SECFailure);
|
||||
}
|
||||
|
||||
aes_status = AES_Encrypt(aes_context, aes_computed_ciphertext,
|
||||
&aes_bytes_encrypted, FIPS_AES_ENCRYPT_LENGTH * 2,
|
||||
aes_known_plaintext,
|
||||
FIPS_AES_DECRYPT_LENGTH);
|
||||
|
||||
AES_DestroyContext(aes_context, PR_TRUE);
|
||||
|
||||
if ((aes_status != SECSuccess) ||
|
||||
(aes_bytes_encrypted != FIPS_AES_ENCRYPT_LENGTH * 2) ||
|
||||
(PORT_Memcmp(aes_computed_ciphertext, aes_gcm_known_ciphertext,
|
||||
FIPS_AES_ENCRYPT_LENGTH * 2) != 0)) {
|
||||
PORT_SetError(SEC_ERROR_LIBRARY_FAILURE);
|
||||
return (SECFailure);
|
||||
}
|
||||
|
||||
/******************************************************/
|
||||
/* AES-GCM Single-Round Known Answer Decryption Test. */
|
||||
/******************************************************/
|
||||
|
||||
aes_context = AES_CreateContext(aes_known_key,
|
||||
(PRUint8 *)&gcmParams,
|
||||
NSS_AES_GCM, PR_FALSE, aes_key_size,
|
||||
FIPS_AES_BLOCK_SIZE);
|
||||
|
||||
if (aes_context == NULL) {
|
||||
PORT_SetError(SEC_ERROR_NO_MEMORY);
|
||||
return (SECFailure);
|
||||
}
|
||||
|
||||
aes_status = AES_Decrypt(aes_context, aes_computed_plaintext,
|
||||
&aes_bytes_decrypted, FIPS_AES_DECRYPT_LENGTH * 2,
|
||||
aes_gcm_known_ciphertext,
|
||||
FIPS_AES_ENCRYPT_LENGTH * 2);
|
||||
|
||||
AES_DestroyContext(aes_context, PR_TRUE);
|
||||
|
||||
if ((aes_status != SECSuccess) ||
|
||||
(aes_bytes_decrypted != FIPS_AES_DECRYPT_LENGTH) ||
|
||||
(PORT_Memcmp(aes_computed_plaintext, aes_known_plaintext,
|
||||
FIPS_AES_DECRYPT_LENGTH) != 0)) {
|
||||
PORT_SetError(SEC_ERROR_LIBRARY_FAILURE);
|
||||
return (SECFailure);
|
||||
}
|
||||
|
||||
return (SECSuccess);
|
||||
}
|
||||
|
||||
|
|
@ -1094,7 +1186,7 @@ freebl_fips_ECDSA_Test(ECParams *ecparams,
|
|||
"Firefox and ThunderBird are awesome!"
|
||||
};
|
||||
|
||||
unsigned char sha1[SHA1_LENGTH]; /* SHA-1 hash (160 bits) */
|
||||
unsigned char sha256[SHA256_LENGTH]; /* SHA-256 hash (256 bits) */
|
||||
unsigned char sig[2 * MAX_ECKEY_LEN];
|
||||
SECItem signature, digest;
|
||||
ECPrivateKey *ecdsa_private_key = NULL;
|
||||
|
|
@ -1136,13 +1228,13 @@ freebl_fips_ECDSA_Test(ECParams *ecparams,
|
|||
/* ECDSA Single-Round Known Answer Signature Test. */
|
||||
/***************************************************/
|
||||
|
||||
ecdsaStatus = SHA1_HashBuf(sha1, msg, sizeof msg);
|
||||
ecdsaStatus = SHA256_HashBuf(sha256, msg, sizeof msg);
|
||||
if (ecdsaStatus != SECSuccess) {
|
||||
goto loser;
|
||||
}
|
||||
digest.type = siBuffer;
|
||||
digest.data = sha1;
|
||||
digest.len = SHA1_LENGTH;
|
||||
digest.data = sha256;
|
||||
digest.len = SHA256_LENGTH;
|
||||
|
||||
memset(sig, 0, sizeof sig);
|
||||
signature.type = siBuffer;
|
||||
|
|
@ -1181,10 +1273,83 @@ loser:
|
|||
}
|
||||
|
||||
static SECStatus
|
||||
freebl_fips_ECDSA_PowerUpSelfTest()
|
||||
freebl_fips_ECDH_Test(ECParams *ecparams)
|
||||
{
|
||||
|
||||
/* ECDSA Known curve nistp256 == ECCCurve_X9_62_PRIME_256V1 params */
|
||||
/* ECDH Known result (reused old CAVS vector) */
|
||||
static const PRUint8 ecdh_known_pub_key_1[] = {
|
||||
EC_POINT_FORM_UNCOMPRESSED,
|
||||
/* pubX */
|
||||
0x16, 0x81, 0x32, 0x86, 0xc8, 0xe4, 0x3a, 0x1f,
|
||||
0x5d, 0xe3, 0x06, 0x22, 0x8b, 0x99, 0x14, 0x25,
|
||||
0xf7, 0x9c, 0x5b, 0x1e, 0x96, 0x84, 0x85, 0x3b,
|
||||
0x17, 0xfe, 0xf3, 0x1c, 0x0e, 0xed, 0xc4, 0xce,
|
||||
/* pubY */
|
||||
0x7a, 0x44, 0xfe, 0xbd, 0x91, 0x71, 0x7d, 0x73,
|
||||
0xd9, 0x45, 0xea, 0xae, 0x66, 0x78, 0xfa, 0x6e,
|
||||
0x46, 0xcd, 0xfa, 0x95, 0x15, 0x47, 0x62, 0x5d,
|
||||
0xbb, 0x1b, 0x9f, 0xe6, 0x39, 0xfc, 0xfd, 0x47
|
||||
};
|
||||
static const PRUint8 ecdh_known_priv_key_2[] = {
|
||||
0xb4, 0x2a, 0xe3, 0x69, 0x19, 0xec, 0xf0, 0x42,
|
||||
0x6d, 0x45, 0x8c, 0x94, 0x4a, 0x26, 0xa7, 0x5c,
|
||||
0xea, 0x9d, 0xd9, 0x0f, 0x59, 0xe0, 0x1a, 0x9d,
|
||||
0x7c, 0xb7, 0x1c, 0x04, 0x53, 0xb8, 0x98, 0x5a
|
||||
};
|
||||
static const PRUint8 ecdh_known_hash_result[] = {
|
||||
0x16, 0xf3, 0x85, 0xa2, 0x41, 0xf3, 0x7f, 0xc4,
|
||||
0x0b, 0x56, 0x47, 0xee, 0xa7, 0x74, 0xb9, 0xdb,
|
||||
0xe1, 0xfa, 0x22, 0xe9, 0x04, 0xf1, 0xb6, 0x12,
|
||||
0x4b, 0x44, 0x8a, 0xbb, 0xbc, 0x08, 0x2b, 0xa7,
|
||||
};
|
||||
|
||||
SECItem ecdh_priv_2, ecdh_pub_1;
|
||||
SECItem ZZ = { 0, 0, 0 };
|
||||
SECStatus ecdhStatus = SECSuccess;
|
||||
PRUint8 computed_hash_result[HASH_LENGTH_MAX];
|
||||
|
||||
ecdh_priv_2.data = (PRUint8 *)ecdh_known_priv_key_2;
|
||||
ecdh_priv_2.len = sizeof(ecdh_known_priv_key_2);
|
||||
ecdh_pub_1.data = (PRUint8 *)ecdh_known_pub_key_1;
|
||||
ecdh_pub_1.len = sizeof(ecdh_known_pub_key_1);
|
||||
|
||||
/* Generates a new EC key pair. The private key is a supplied
|
||||
* random value (in seed) and the public key is the result of
|
||||
* performing a scalar point multiplication of that value with
|
||||
* the curve's base point.
|
||||
*/
|
||||
ecdhStatus = ECDH_Derive(&ecdh_pub_1, ecparams, &ecdh_priv_2, PR_FALSE, &ZZ);
|
||||
if (ecdhStatus != SECSuccess) {
|
||||
goto loser;
|
||||
}
|
||||
ecdhStatus = SHA256_HashBuf(computed_hash_result, ZZ.data, ZZ.len);
|
||||
if (ecdhStatus != SECSuccess) {
|
||||
goto loser;
|
||||
}
|
||||
|
||||
if (PORT_Memcmp(computed_hash_result, ecdh_known_hash_result,
|
||||
sizeof(ecdh_known_hash_result)) != 0) {
|
||||
ecdhStatus = SECFailure;
|
||||
goto loser;
|
||||
}
|
||||
|
||||
loser:
|
||||
if (ZZ.data) {
|
||||
SECITEM_FreeItem(&ZZ, PR_FALSE);
|
||||
}
|
||||
|
||||
if (ecdhStatus != SECSuccess) {
|
||||
PORT_SetError(SEC_ERROR_LIBRARY_FAILURE);
|
||||
return (SECFailure);
|
||||
}
|
||||
return (SECSuccess);
|
||||
}
|
||||
|
||||
static SECStatus
|
||||
freebl_fips_EC_PowerUpSelfTest()
|
||||
{
|
||||
|
||||
/* EC Known curve nistp256 == ECCCurve_X9_62_PRIME_256V1 params */
|
||||
static const unsigned char p256_prime[] = {
|
||||
0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
||||
|
|
@ -1217,7 +1382,7 @@ freebl_fips_ECDSA_PowerUpSelfTest()
|
|||
static const unsigned char p256_encoding[] = {
|
||||
0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07
|
||||
};
|
||||
static const ECParams ecdsa_known_P256_Params = {
|
||||
static const ECParams ec_known_P256_Params = {
|
||||
NULL, ec_params_named, /* arena, type */
|
||||
/* fieldID */
|
||||
{ 256, ec_field_GFp, /* size and type */
|
||||
|
|
@ -1250,10 +1415,10 @@ freebl_fips_ECDSA_PowerUpSelfTest()
|
|||
0x9d, 0x37, 0x4b, 0x1c, 0xdc, 0x35, 0x90, 0xff,
|
||||
0x1a, 0x2d, 0x98, 0x95, 0x1b, 0x2f, 0xeb, 0x7f,
|
||||
0xbb, 0x81, 0xca, 0xc0, 0x69, 0x75, 0xea, 0xc5,
|
||||
0x59, 0x6a, 0x62, 0x49, 0x3d, 0x50, 0xc9, 0xe1,
|
||||
0x27, 0x3b, 0xff, 0x9b, 0x13, 0x66, 0x67, 0xdd,
|
||||
0x7d, 0xd1, 0x0d, 0x2d, 0x7c, 0x44, 0x04, 0x1b,
|
||||
0x16, 0x21, 0x12, 0xc5, 0xcb, 0xbd, 0x9e, 0x75
|
||||
0xa7, 0xd2, 0x20, 0xdd, 0x45, 0xf9, 0x2b, 0xdd,
|
||||
0xda, 0x98, 0x99, 0x5b, 0x1c, 0x02, 0x3a, 0x27,
|
||||
0x8b, 0x7d, 0xb6, 0xed, 0x0e, 0xe0, 0xa7, 0xac,
|
||||
0xaa, 0x36, 0x2c, 0xfa, 0x1a, 0xdf, 0x0d, 0xe1,
|
||||
};
|
||||
|
||||
ECParams ecparams;
|
||||
|
|
@ -1261,13 +1426,18 @@ freebl_fips_ECDSA_PowerUpSelfTest()
|
|||
SECStatus rv;
|
||||
|
||||
/* ECDSA GF(p) prime field curve test */
|
||||
ecparams = ecdsa_known_P256_Params;
|
||||
ecparams = ec_known_P256_Params;
|
||||
rv = freebl_fips_ECDSA_Test(&ecparams,
|
||||
ecdsa_known_P256_signature,
|
||||
sizeof ecdsa_known_P256_signature);
|
||||
if (rv != SECSuccess) {
|
||||
return (SECFailure);
|
||||
}
|
||||
/* ECDH GF(p) prime field curve test */
|
||||
rv = freebl_fips_ECDH_Test(&ecparams);
|
||||
if (rv != SECSuccess) {
|
||||
return (SECFailure);
|
||||
}
|
||||
|
||||
return (SECSuccess);
|
||||
}
|
||||
|
|
@ -1417,6 +1587,138 @@ freebl_fips_DSA_PowerUpSelfTest(void)
|
|||
return (SECSuccess);
|
||||
}
|
||||
|
||||
static SECStatus
|
||||
freebl_fips_DH_PowerUpSelfTest(void)
|
||||
{
|
||||
/* DH Known P (2048-bits) */
|
||||
static const PRUint8 dh_known_P[] = {
|
||||
0xc2, 0x79, 0xbb, 0x76, 0x32, 0x0d, 0x43, 0xfd,
|
||||
0x1b, 0x8c, 0xa2, 0x3c, 0x00, 0xdd, 0x6d, 0xef,
|
||||
0xf8, 0x1a, 0xd9, 0xc1, 0xa2, 0xf5, 0x73, 0x2b,
|
||||
0xdb, 0x1a, 0x3e, 0x84, 0x90, 0xeb, 0xe7, 0x8e,
|
||||
0x5f, 0x5c, 0x6b, 0xb6, 0x61, 0x89, 0xd1, 0x03,
|
||||
0xb0, 0x5f, 0x91, 0xe4, 0xd2, 0x82, 0x90, 0xfc,
|
||||
0x3c, 0x49, 0x69, 0x59, 0xc1, 0x51, 0x6a, 0x85,
|
||||
0x71, 0xe7, 0x5d, 0x72, 0x5a, 0x45, 0xad, 0x01,
|
||||
0x6f, 0x82, 0xae, 0xec, 0x91, 0x08, 0x2e, 0x7c,
|
||||
0x64, 0x93, 0x46, 0x1c, 0x68, 0xef, 0xc2, 0x03,
|
||||
0x28, 0x1d, 0x75, 0x3a, 0xeb, 0x9c, 0x46, 0xf0,
|
||||
0xc9, 0xdb, 0x99, 0x95, 0x13, 0x66, 0x4d, 0xd5,
|
||||
0x1a, 0x78, 0x92, 0x51, 0x89, 0x72, 0x28, 0x7f,
|
||||
0x20, 0x70, 0x41, 0x49, 0xa2, 0x86, 0xe9, 0xf9,
|
||||
0x78, 0x5f, 0x8d, 0x2e, 0x5d, 0xfa, 0xdb, 0x57,
|
||||
0xd4, 0x71, 0xdf, 0x66, 0xe3, 0x9e, 0x88, 0x70,
|
||||
0xa4, 0x21, 0x44, 0x6a, 0xc7, 0xae, 0x30, 0x2c,
|
||||
0x9c, 0x1f, 0x91, 0x57, 0xc8, 0x24, 0x34, 0x2d,
|
||||
0x7a, 0x4a, 0x43, 0xc2, 0x5f, 0xab, 0x64, 0x2e,
|
||||
0xaa, 0x28, 0x32, 0x95, 0x42, 0x7b, 0xa0, 0xcc,
|
||||
0xdf, 0xfd, 0x22, 0xc8, 0x56, 0x84, 0xc1, 0x62,
|
||||
0x15, 0xb2, 0x77, 0x86, 0x81, 0xfc, 0xa5, 0x12,
|
||||
0x3c, 0xca, 0x28, 0x17, 0x8f, 0x03, 0x16, 0x6e,
|
||||
0xb8, 0x24, 0xfa, 0x1b, 0x15, 0x02, 0xfd, 0x8b,
|
||||
0xb6, 0x0a, 0x1a, 0xf7, 0x47, 0x41, 0xc5, 0x2b,
|
||||
0x37, 0x3e, 0xa1, 0xbf, 0x68, 0xda, 0x1c, 0x55,
|
||||
0x44, 0xc3, 0xee, 0xa1, 0x63, 0x07, 0x11, 0x3b,
|
||||
0x5f, 0x00, 0x84, 0xb4, 0xc4, 0xe4, 0xa7, 0x97,
|
||||
0x29, 0xf8, 0xce, 0xab, 0xfc, 0x27, 0x3e, 0x34,
|
||||
0xe4, 0xc7, 0x81, 0x52, 0x32, 0x0e, 0x27, 0x3c,
|
||||
0xa6, 0x70, 0x3f, 0x4a, 0x54, 0xda, 0xdd, 0x60,
|
||||
0x26, 0xb3, 0x6e, 0x45, 0x26, 0x19, 0x41, 0x6f
|
||||
};
|
||||
|
||||
static const PRUint8 dh_known_Y_1[] = {
|
||||
0xb4, 0xc7, 0x85, 0xba, 0xa6, 0x98, 0xb3, 0x77,
|
||||
0x41, 0x2b, 0xd9, 0x9a, 0x72, 0x90, 0xa4, 0xac,
|
||||
0xc4, 0xf7, 0xc2, 0x23, 0x9a, 0x68, 0xe2, 0x7d,
|
||||
0x3a, 0x54, 0x45, 0x91, 0xc1, 0xd7, 0x8a, 0x17,
|
||||
0x54, 0xd3, 0x37, 0xaa, 0x0c, 0xcd, 0x0b, 0xe2,
|
||||
0xf2, 0x34, 0x0f, 0x17, 0xa8, 0x07, 0x88, 0xaf,
|
||||
0xed, 0xc1, 0x02, 0xd4, 0xdb, 0xdc, 0x0f, 0x22,
|
||||
0x51, 0x23, 0x40, 0xb9, 0x65, 0x6d, 0x39, 0xf4,
|
||||
0xe1, 0x8b, 0x57, 0x7d, 0xb6, 0xd3, 0xf2, 0x6b,
|
||||
0x02, 0xa9, 0x36, 0xf0, 0x0d, 0xe3, 0xdb, 0x9a,
|
||||
0xbf, 0x20, 0x00, 0x4d, 0xec, 0x6f, 0x68, 0x95,
|
||||
0xee, 0x59, 0x4e, 0x3c, 0xb6, 0xda, 0x7b, 0x19,
|
||||
0x08, 0x9a, 0xef, 0x61, 0x43, 0xf5, 0xfb, 0x25,
|
||||
0x70, 0x19, 0xc1, 0x5f, 0x0e, 0x0f, 0x6a, 0x63,
|
||||
0x44, 0xe9, 0xcf, 0x33, 0xce, 0x13, 0x4f, 0x34,
|
||||
0x3c, 0x94, 0x40, 0x8d, 0xf2, 0x65, 0x42, 0xef,
|
||||
0x70, 0x54, 0xdd, 0x5f, 0xc1, 0xd7, 0x0b, 0xa6,
|
||||
0x06, 0xd5, 0xa6, 0x47, 0xae, 0x2c, 0x1f, 0x5a,
|
||||
0xa6, 0xb3, 0xc1, 0x38, 0x3a, 0x3b, 0x60, 0x94,
|
||||
0xa2, 0x95, 0xab, 0xb2, 0x86, 0x82, 0xc5, 0x3b,
|
||||
0xb8, 0x6f, 0x3e, 0x55, 0x86, 0x84, 0xe0, 0x00,
|
||||
0xe5, 0xef, 0xca, 0x5c, 0xec, 0x7e, 0x38, 0x0f,
|
||||
0x82, 0xa2, 0xb1, 0xee, 0x48, 0x1b, 0x32, 0xbb,
|
||||
0x5a, 0x33, 0xa5, 0x01, 0xba, 0xca, 0xa6, 0x64,
|
||||
0x61, 0xb6, 0xe5, 0x5c, 0x0e, 0x5f, 0x2c, 0x66,
|
||||
0x0d, 0x01, 0x6a, 0x20, 0x04, 0x70, 0x68, 0x82,
|
||||
0x93, 0x29, 0x15, 0x3b, 0x7a, 0x06, 0xb2, 0x92,
|
||||
0x61, 0xcd, 0x7e, 0xa4, 0xc1, 0x15, 0x64, 0x3b,
|
||||
0x3c, 0x51, 0x10, 0x4c, 0x87, 0xa6, 0xaf, 0x07,
|
||||
0xce, 0x46, 0x82, 0x75, 0xf3, 0x90, 0xf3, 0x21,
|
||||
0x55, 0x74, 0xc2, 0xe4, 0x96, 0x7d, 0xc3, 0xe6,
|
||||
0x33, 0xa5, 0xc6, 0x51, 0xef, 0xec, 0x90, 0x08
|
||||
};
|
||||
|
||||
static const PRUint8 dh_known_x_2[] = {
|
||||
0x9e, 0x9b, 0xc3, 0x25, 0x53, 0xf9, 0xfc, 0x92,
|
||||
0xb6, 0xae, 0x54, 0x8e, 0x23, 0x4c, 0x94, 0xba,
|
||||
0x41, 0xe6, 0x29, 0x33, 0xb9, 0xdb, 0xff, 0x6d,
|
||||
0xa8, 0xb8, 0x48, 0x49, 0x66, 0x11, 0xa6, 0x13
|
||||
};
|
||||
|
||||
static const PRUint8 dh_known_hash_result[] = {
|
||||
0x93, 0xa2, 0x89, 0x1c, 0x8a, 0xc3, 0x70, 0xbf,
|
||||
0xa7, 0xdf, 0xb6, 0xd7, 0x82, 0xfb, 0x87, 0x81,
|
||||
0x09, 0x47, 0xf3, 0x9f, 0x5a, 0xbf, 0x4f, 0x3f,
|
||||
0x8e, 0x5e, 0x06, 0xca, 0x30, 0xa7, 0xaf, 0x10
|
||||
};
|
||||
|
||||
/* DH variables. */
|
||||
SECStatus dhStatus;
|
||||
SECItem dh_prime;
|
||||
SECItem dh_pub_key_1;
|
||||
SECItem dh_priv_key_2;
|
||||
SECItem ZZ = { 0, 0, 0 };
|
||||
PRUint8 computed_hash_result[HASH_LENGTH_MAX];
|
||||
|
||||
dh_prime.data = (PRUint8 *)dh_known_P;
|
||||
dh_prime.len = sizeof(dh_known_P);
|
||||
dh_pub_key_1.data = (PRUint8 *)dh_known_Y_1;
|
||||
dh_pub_key_1.len = sizeof(dh_known_Y_1);
|
||||
dh_priv_key_2.data = (PRUint8 *)dh_known_x_2;
|
||||
dh_priv_key_2.len = sizeof(dh_known_x_2);
|
||||
|
||||
/* execute the derive */
|
||||
dhStatus = DH_Derive(&dh_pub_key_1, &dh_prime, &dh_priv_key_2, &ZZ, dh_prime.len);
|
||||
if (dhStatus != SECSuccess) {
|
||||
goto loser;
|
||||
}
|
||||
|
||||
dhStatus = SHA256_HashBuf(computed_hash_result, ZZ.data, ZZ.len);
|
||||
if (dhStatus != SECSuccess) {
|
||||
goto loser;
|
||||
}
|
||||
|
||||
if (PORT_Memcmp(computed_hash_result, dh_known_hash_result,
|
||||
sizeof(dh_known_hash_result)) != 0) {
|
||||
dhStatus = SECFailure;
|
||||
goto loser;
|
||||
}
|
||||
|
||||
loser:
|
||||
if (ZZ.data) {
|
||||
SECITEM_FreeItem(&ZZ, PR_FALSE);
|
||||
}
|
||||
|
||||
if (dhStatus != SECSuccess) {
|
||||
PORT_SetError(SEC_ERROR_LIBRARY_FAILURE);
|
||||
return (SECFailure);
|
||||
}
|
||||
return (SECSuccess);
|
||||
}
|
||||
|
||||
static SECStatus
|
||||
freebl_fips_RNG_PowerUpSelfTest(void)
|
||||
{
|
||||
|
|
@ -1541,7 +1843,7 @@ freebl_fipsPowerUpSelfTest(unsigned int tests)
|
|||
return rv;
|
||||
|
||||
/* NOTE: RSA can only be tested in full freebl. It requires access to
|
||||
* the locking primitives */
|
||||
* the locking primitives */
|
||||
/* RSA Power-Up SelfTest(s). */
|
||||
rv = freebl_fips_RSA_PowerUpSelfTest();
|
||||
|
||||
|
|
@ -1554,8 +1856,14 @@ freebl_fipsPowerUpSelfTest(unsigned int tests)
|
|||
if (rv != SECSuccess)
|
||||
return rv;
|
||||
|
||||
/* ECDSA Power-Up SelfTest(s). */
|
||||
rv = freebl_fips_ECDSA_PowerUpSelfTest();
|
||||
/* DH Power-Up SelfTest(s). */
|
||||
rv = freebl_fips_DH_PowerUpSelfTest();
|
||||
|
||||
if (rv != SECSuccess)
|
||||
return rv;
|
||||
|
||||
/* EC Power-Up SelfTest(s). */
|
||||
rv = freebl_fips_EC_PowerUpSelfTest();
|
||||
|
||||
if (rv != SECSuccess)
|
||||
return rv;
|
||||
|
|
|
|||
|
|
@ -76,11 +76,11 @@
|
|||
'__SSSE3__',
|
||||
],
|
||||
}],
|
||||
[ 'OS=="android"', {
|
||||
# On Android we can't use any of the hardware acceleration :(
|
||||
'defines!': [
|
||||
'__ARM_NEON__',
|
||||
'__ARM_NEON',
|
||||
[ 'target_arch=="arm"', {
|
||||
# Gecko doesn't support non-NEON platform on Android, but tier-3
|
||||
# platform such as Linux/arm will need it
|
||||
'cflags_mozilla': [
|
||||
'-mfpu=neon'
|
||||
],
|
||||
}],
|
||||
],
|
||||
|
|
@ -107,7 +107,7 @@
|
|||
],
|
||||
}],
|
||||
# macOS build doesn't use cflags.
|
||||
[ 'OS=="mac"', {
|
||||
[ 'OS=="mac" or OS=="ios"', {
|
||||
'xcode_settings': {
|
||||
'OTHER_CFLAGS': [
|
||||
'-mpclmul', '-maes'
|
||||
|
|
|
|||
|
|
@ -143,6 +143,7 @@ loser:
|
|||
void
|
||||
intel_AES_GCM_DestroyContext(intel_AES_GCMContext *gcm, PRBool freeit)
|
||||
{
|
||||
PORT_Memset(gcm, 0, sizeof(intel_AES_GCMContext));
|
||||
if (freeit) {
|
||||
PORT_Free(gcm);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -313,10 +313,14 @@ static const struct FREEBLVectorStr vector =
|
|||
BLAKE2B_End,
|
||||
BLAKE2B_FlattenSize,
|
||||
BLAKE2B_Flatten,
|
||||
BLAKE2B_Resurrect
|
||||
BLAKE2B_Resurrect,
|
||||
|
||||
/* End of Version 3.020 */
|
||||
|
||||
ChaCha20_Xor
|
||||
|
||||
/* End of version 3.021 */
|
||||
|
||||
};
|
||||
|
||||
const FREEBLVector*
|
||||
|
|
|
|||
|
|
@ -2060,6 +2060,16 @@ EC_CopyParams(PLArenaPool *arena, ECParams *dstParams,
|
|||
return (vector->p_EC_CopyParams)(arena, dstParams, srcParams);
|
||||
}
|
||||
|
||||
SECStatus
|
||||
ChaCha20_Xor(unsigned char *output, const unsigned char *block, unsigned int len,
|
||||
const unsigned char *k, const unsigned char *nonce, PRUint32 ctr)
|
||||
{
|
||||
if (!vector && PR_SUCCESS != freebl_RunLoaderOnce()) {
|
||||
return SECFailure;
|
||||
}
|
||||
return (vector->p_ChaCha20_Xor)(output, block, len, k, nonce, ctr);
|
||||
}
|
||||
|
||||
SECStatus
|
||||
ChaCha20Poly1305_InitContext(ChaCha20Poly1305Context *ctx,
|
||||
const unsigned char *key, unsigned int keyLen,
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include "blapi.h"
|
||||
|
||||
#define FREEBL_VERSION 0x0314
|
||||
#define FREEBL_VERSION 0x0315
|
||||
|
||||
struct FREEBLVectorStr {
|
||||
|
||||
|
|
@ -759,6 +759,12 @@ struct FREEBLVectorStr {
|
|||
|
||||
/* Version 3.020 came to here */
|
||||
|
||||
SECStatus (*p_ChaCha20_Xor)(unsigned char *output, const unsigned char *block,
|
||||
unsigned int len, const unsigned char *k,
|
||||
const unsigned char *nonce, PRUint32 ctr);
|
||||
|
||||
/* Version 3.021 came to here */
|
||||
|
||||
/* Add new function pointers at the end of this struct and bump
|
||||
* FREEBL_VERSION at the beginning of this file. */
|
||||
};
|
||||
|
|
|
|||
|
|
@ -2063,7 +2063,10 @@ s_mp_almost_inverse(const mp_int *a, const mp_int *p, mp_int *c)
|
|||
}
|
||||
}
|
||||
if (res >= 0) {
|
||||
while (MP_SIGN(c) != MP_ZPOS) {
|
||||
if (mp_cmp_mag(c, p) >= 0) {
|
||||
MP_CHECKOK(mp_div(c, p, NULL, c));
|
||||
}
|
||||
if (MP_SIGN(c) != MP_ZPOS) {
|
||||
MP_CHECKOK(mp_add(c, p, c));
|
||||
}
|
||||
res = k;
|
||||
|
|
|
|||
|
|
@ -491,11 +491,11 @@ cleanup:
|
|||
** This implments steps 4 thorough 22 of FIPS 186-3 A.1.2.1 and
|
||||
** steps 16 through 34 of FIPS 186-2 C.6
|
||||
*/
|
||||
#define MAX_ST_SEED_BITS (HASH_LENGTH_MAX * PR_BITS_PER_BYTE)
|
||||
static SECStatus
|
||||
makePrimefromPrimesShaweTaylor(
|
||||
HASH_HashType hashtype, /* selected Hashing algorithm */
|
||||
unsigned int length, /* input. Length of prime in bits. */
|
||||
unsigned int seedlen, /* input seed length in bits */
|
||||
mp_int *c0, /* seed prime */
|
||||
mp_int *q, /* sub prime, can be 1 */
|
||||
mp_int *prime, /* output. */
|
||||
|
|
@ -557,7 +557,7 @@ makePrimefromPrimesShaweTaylor(
|
|||
old_counter = *prime_gen_counter;
|
||||
/*
|
||||
** Comment: Generate a pseudorandom integer x in the interval
|
||||
** [2**(lenght-1), 2**length].
|
||||
** [2**(length-1), 2**length].
|
||||
**
|
||||
** Step 6/18 x = 0
|
||||
*/
|
||||
|
|
@ -569,11 +569,10 @@ makePrimefromPrimesShaweTaylor(
|
|||
for (i = 0; i < iterations; i++) {
|
||||
/* is bigger than prime_seed should get to */
|
||||
CHECK_SEC_OK(addToSeedThenHash(hashtype, prime_seed, i,
|
||||
MAX_ST_SEED_BITS, &x[(iterations - i - 1) * hashlen]));
|
||||
seedlen, &x[(iterations - i - 1) * hashlen]));
|
||||
}
|
||||
/* Step 8/20 prime_seed = prime_seed + iterations + 1 */
|
||||
CHECK_SEC_OK(addToSeed(prime_seed, iterations, MAX_ST_SEED_BITS,
|
||||
prime_seed));
|
||||
CHECK_SEC_OK(addToSeed(prime_seed, iterations, seedlen, prime_seed));
|
||||
/*
|
||||
** Step 9/21 x = 2 ** (length-1) + x mod 2 ** (length-1)
|
||||
**
|
||||
|
|
@ -595,7 +594,7 @@ makePrimefromPrimesShaweTaylor(
|
|||
x[offset] = (mask & x[offset]) | bit;
|
||||
/*
|
||||
** Comment: Generate a candidate prime c in the interval
|
||||
** [2**(lenght-1), 2**length].
|
||||
** [2**(length-1), 2**length].
|
||||
**
|
||||
** Step 10 t = ceiling(x/(2q(p0)))
|
||||
** Step 22 t = ceiling(x/(2(c0)))
|
||||
|
|
@ -624,7 +623,7 @@ step_23:
|
|||
/* t = 2**(length-1) + 2qc0 -1 */
|
||||
CHECK_MPI_OK(mp_add(&two_length_minus_1, &t, &t));
|
||||
/* t = floor((2**(length-1)+2qc0 -1)/2qco)
|
||||
* = ceil(2**(lenght-2)/2qc0) */
|
||||
* = ceil(2**(length-2)/2qc0) */
|
||||
CHECK_MPI_OK(mp_div(&t, &c0_2, &t, NULL));
|
||||
CHECK_MPI_OK(mp_mul(&t, &c0_2, &c));
|
||||
CHECK_MPI_OK(mp_add_d(&c, (mp_digit)1, &c)); /* c= 2tqc0 + 1*/
|
||||
|
|
@ -645,13 +644,11 @@ step_23:
|
|||
** NOTE: we reuse the x array for 'a' initially.
|
||||
*/
|
||||
for (i = 0; i < iterations; i++) {
|
||||
/* MAX_ST_SEED_BITS is bigger than prime_seed should get to */
|
||||
CHECK_SEC_OK(addToSeedThenHash(hashtype, prime_seed, i,
|
||||
MAX_ST_SEED_BITS, &x[(iterations - i - 1) * hashlen]));
|
||||
seedlen, &x[(iterations - i - 1) * hashlen]));
|
||||
}
|
||||
/* Step 16/28 prime_seed = prime_seed + iterations + 1 */
|
||||
CHECK_SEC_OK(addToSeed(prime_seed, iterations, MAX_ST_SEED_BITS,
|
||||
prime_seed));
|
||||
CHECK_SEC_OK(addToSeed(prime_seed, iterations, seedlen, prime_seed));
|
||||
/* Step 17/29 a = 2 + (a mod (c-3)). */
|
||||
CHECK_MPI_OK(mp_read_unsigned_octets(&a, x, iterations * hashlen));
|
||||
CHECK_MPI_OK(mp_sub_d(&c, (mp_digit)3, &z)); /* z = c -3 */
|
||||
|
|
@ -742,6 +739,7 @@ makePrimefromSeedShaweTaylor(
|
|||
int hashlen = HASH_ResultLen(hashtype);
|
||||
int outlen = hashlen * PR_BITS_PER_BYTE;
|
||||
int offset;
|
||||
int seedlen = input_seed->len * 8; /*seedlen is in bits */
|
||||
unsigned char bit, mask;
|
||||
unsigned char x[HASH_LENGTH_MAX * 2];
|
||||
mp_digit dummy;
|
||||
|
|
@ -775,7 +773,7 @@ makePrimefromSeedShaweTaylor(
|
|||
goto cleanup;
|
||||
}
|
||||
/* Steps 16-34 */
|
||||
rv = makePrimefromPrimesShaweTaylor(hashtype, length, &c0, &one,
|
||||
rv = makePrimefromPrimesShaweTaylor(hashtype, length, seedlen, &c0, &one,
|
||||
prime, prime_seed, prime_gen_counter);
|
||||
goto cleanup; /* we're done, one way or the other */
|
||||
}
|
||||
|
|
@ -787,8 +785,7 @@ makePrimefromSeedShaweTaylor(
|
|||
step_5:
|
||||
/* Step 5 c = Hash(prime_seed) xor Hash(prime_seed+1). */
|
||||
CHECK_SEC_OK(HASH_HashBuf(hashtype, x, prime_seed->data, prime_seed->len));
|
||||
CHECK_SEC_OK(addToSeedThenHash(hashtype, prime_seed, 1,
|
||||
MAX_ST_SEED_BITS, &x[hashlen]));
|
||||
CHECK_SEC_OK(addToSeedThenHash(hashtype, prime_seed, 1, seedlen, &x[hashlen]));
|
||||
for (i = 0; i < hashlen; i++) {
|
||||
x[i] = x[i] ^ x[i + hashlen];
|
||||
}
|
||||
|
|
@ -817,7 +814,7 @@ step_5:
|
|||
/* Step 8 prime_gen_counter = prime_gen_counter + 1 */
|
||||
(*prime_gen_counter)++;
|
||||
/* Step 9 prime_seed = prime_seed + 2 */
|
||||
CHECK_SEC_OK(addToSeed(prime_seed, 2, MAX_ST_SEED_BITS, prime_seed));
|
||||
CHECK_SEC_OK(addToSeed(prime_seed, 2, seedlen, prime_seed));
|
||||
/* Step 10 Perform deterministic primality test on c. For example, since
|
||||
** c is small, it's primality can be tested by trial division, See
|
||||
** See Appendic C.7.
|
||||
|
|
@ -890,7 +887,8 @@ findQfromSeed(
|
|||
mp_int *Q_, /* output. */
|
||||
unsigned int *qseed_len, /* output */
|
||||
HASH_HashType *hashtypePtr, /* output. Hash uses */
|
||||
pqgGenType *typePtr) /* output. Generation Type used */
|
||||
pqgGenType *typePtr, /* output. Generation Type used */
|
||||
unsigned int *qgen_counter) /* output. q_counter */
|
||||
{
|
||||
HASH_HashType hashtype;
|
||||
SECItem firstseed = { 0, 0, 0 };
|
||||
|
|
@ -964,6 +962,7 @@ findQfromSeed(
|
|||
*qseed_len = qseed.len;
|
||||
*hashtypePtr = hashtype;
|
||||
*typePtr = FIPS186_3_ST_TYPE;
|
||||
*qgen_counter = count;
|
||||
SECITEM_FreeItem(&qseed, PR_FALSE);
|
||||
return SECSuccess;
|
||||
}
|
||||
|
|
@ -1388,19 +1387,26 @@ step_5:
|
|||
CHECK_SEC_OK(makePrimefromSeedShaweTaylor(hashtype, (L + 1) / 2 + 1,
|
||||
&qseed, &p0, &pseed, &pgen_counter));
|
||||
/* Steps 4-22 FIPS 186-3 appendix A.1.2.1.2 */
|
||||
CHECK_SEC_OK(makePrimefromPrimesShaweTaylor(hashtype, L,
|
||||
CHECK_SEC_OK(makePrimefromPrimesShaweTaylor(hashtype, L, seedBytes * 8,
|
||||
&p0, &Q, &P, &pseed, &pgen_counter));
|
||||
|
||||
/* combine all the seeds */
|
||||
seed->len = firstseed.len + qseed.len + pseed.len;
|
||||
if ((qseed.len > firstseed.len) || (pseed.len > firstseed.len)) {
|
||||
PORT_SetError(SEC_ERROR_LIBRARY_FAILURE); /* shouldn't happen */
|
||||
goto cleanup;
|
||||
}
|
||||
/* If the seed overflows, then pseed and qseed may have leading zeros which the mpl code clamps.
|
||||
* we want to make sure those are added back in so the individual seed lengths are predictable from
|
||||
* the overall seed length */
|
||||
seed->len = firstseed.len * 3;
|
||||
seed->data = PORT_ArenaZAlloc(verify->arena, seed->len);
|
||||
if (seed->data == NULL) {
|
||||
goto cleanup;
|
||||
}
|
||||
PORT_Memcpy(seed->data, firstseed.data, firstseed.len);
|
||||
PORT_Memcpy(seed->data + firstseed.len, pseed.data, pseed.len);
|
||||
PORT_Memcpy(seed->data + firstseed.len + pseed.len, qseed.data, qseed.len);
|
||||
counter = 0; /* (qgen_counter << 16) | pgen_counter; */
|
||||
PORT_Memcpy(seed->data + 2 * firstseed.len - pseed.len, pseed.data, pseed.len);
|
||||
PORT_Memcpy(seed->data + 3 * firstseed.len - qseed.len, qseed.data, qseed.len);
|
||||
counter = (qgen_counter << 16) | pgen_counter;
|
||||
|
||||
/* we've generated both P and Q now, skip to generating G */
|
||||
goto generate_G;
|
||||
|
|
@ -1620,6 +1626,7 @@ PQG_VerifyParams(const PQGParams *params,
|
|||
int j;
|
||||
unsigned int counter_max = 0; /* handle legacy L < 1024 */
|
||||
unsigned int qseed_len;
|
||||
unsigned int qgen_counter_ = 0;
|
||||
SECItem pseed_ = { 0, 0, 0 };
|
||||
HASH_HashType hashtype;
|
||||
pqgGenType type;
|
||||
|
|
@ -1699,48 +1706,55 @@ PQG_VerifyParams(const PQGParams *params,
|
|||
/* Steps 7-12 are done only if the optional PQGVerify is supplied. */
|
||||
/* continue processing P */
|
||||
/* 7. counter < 4*L */
|
||||
CHECKPARAM((vfy->counter == -1) || (vfy->counter < counter_max));
|
||||
/* 8. g >= N and g < 2*L (g is length of seed in bits) */
|
||||
g = vfy->seed.len * 8;
|
||||
CHECKPARAM(g >= N && g < counter_max / 2);
|
||||
/* step 7 and 8 are delayed until we determine which type of generation
|
||||
* was used */
|
||||
/* 9. Q generated from SEED matches Q in PQGParams. */
|
||||
/* This function checks all possible hash and generation types to
|
||||
* find a Q_ which matches Q. */
|
||||
g = vfy->seed.len * 8;
|
||||
CHECKPARAM(findQfromSeed(L, N, g, &vfy->seed, &Q, &Q_, &qseed_len,
|
||||
&hashtype, &type) == SECSuccess);
|
||||
&hashtype, &type, &qgen_counter_) == SECSuccess);
|
||||
CHECKPARAM(mp_cmp(&Q, &Q_) == 0);
|
||||
/* now we can do steps 7 & 8*/
|
||||
if ((type == FIPS186_1_TYPE) || (type == FIPS186_3_TYPE)) {
|
||||
CHECKPARAM((vfy->counter == -1) || (vfy->counter < counter_max));
|
||||
CHECKPARAM(g >= N && g < counter_max / 2);
|
||||
}
|
||||
if (type == FIPS186_3_ST_TYPE) {
|
||||
SECItem qseed = { 0, 0, 0 };
|
||||
SECItem pseed = { 0, 0, 0 };
|
||||
unsigned int first_seed_len;
|
||||
unsigned int pgen_counter = 0;
|
||||
unsigned int pgen_counter_ = 0;
|
||||
unsigned int qgen_counter = (vfy->counter >> 16) & 0xffff;
|
||||
unsigned int pgen_counter = (vfy->counter) & 0xffff;
|
||||
|
||||
/* extract pseed and qseed from domain_parameter_seed, which is
|
||||
* first_seed || pseed || qseed. qseed is first_seed + small_integer
|
||||
* pseed is qseed + small_integer. This means most of the time
|
||||
* mod the length of first_seed. pseed is qseed + small_integer mod
|
||||
* the length of first_seed. This means most of the time
|
||||
* first_seed.len == qseed.len == pseed.len. Rarely qseed.len and/or
|
||||
* pseed.len will be one greater than first_seed.len, so we can
|
||||
* depend on the fact that
|
||||
* first_seed.len = floor(domain_parameter_seed.len/3).
|
||||
* findQfromSeed returned qseed.len, so we can calculate pseed.len as
|
||||
* pseed.len = domain_parameter_seed.len - first_seed.len - qseed.len
|
||||
* this is probably over kill, since 99.999% of the time they will all
|
||||
* be equal.
|
||||
*
|
||||
* With the lengths, we can now find the offsets;
|
||||
* pseed.len will be smaller because mpi clamps them. pqgGen
|
||||
* automatically adds the zero pad back though, so we can depend
|
||||
* domain_parameter_seed.len to be a multiple of three. We only have
|
||||
* to deal with the fact that the returned seeds from our functions
|
||||
* could be shorter.
|
||||
* first_seed.len = domain_parameter_seed.len/3
|
||||
* We can now find the offsets;
|
||||
* first_seed.data = domain_parameter_seed.data + 0
|
||||
* pseed.data = domain_parameter_seed.data + first_seed.len
|
||||
* qseed.data = domain_parameter_seed.data
|
||||
* + domain_paramter_seed.len - qseed.len
|
||||
*
|
||||
* We deal with pseed possibly having zero pad in the pseed check later.
|
||||
*/
|
||||
first_seed_len = vfy->seed.len / 3;
|
||||
CHECKPARAM(qseed_len < vfy->seed.len);
|
||||
CHECKPARAM(first_seed_len * 8 > N - 1);
|
||||
CHECKPARAM(first_seed_len + qseed_len < vfy->seed.len);
|
||||
CHECKPARAM(first_seed_len * 8 < counter_max / 2);
|
||||
CHECKPARAM(first_seed_len >= qseed_len);
|
||||
qseed.len = qseed_len;
|
||||
qseed.data = vfy->seed.data + vfy->seed.len - qseed.len;
|
||||
pseed.len = vfy->seed.len - (first_seed_len + qseed_len);
|
||||
pseed.len = first_seed_len;
|
||||
pseed.data = vfy->seed.data + first_seed_len;
|
||||
|
||||
/*
|
||||
|
|
@ -1752,14 +1766,34 @@ PQG_VerifyParams(const PQGParams *params,
|
|||
** (ST_Random_Prime((ceil(length/2)+1, input_seed)
|
||||
*/
|
||||
CHECK_SEC_OK(makePrimefromSeedShaweTaylor(hashtype, (L + 1) / 2 + 1,
|
||||
&qseed, &p0, &pseed_, &pgen_counter));
|
||||
&qseed, &p0, &pseed_, &pgen_counter_));
|
||||
/* Steps 4-22 FIPS 186-3 appendix A.1.2.1.2 */
|
||||
CHECK_SEC_OK(makePrimefromPrimesShaweTaylor(hashtype, L,
|
||||
&p0, &Q_, &P_, &pseed_, &pgen_counter));
|
||||
CHECK_SEC_OK(makePrimefromPrimesShaweTaylor(hashtype, L, first_seed_len * 8,
|
||||
&p0, &Q_, &P_, &pseed_, &pgen_counter_));
|
||||
CHECKPARAM(mp_cmp(&P, &P_) == 0);
|
||||
/* make sure pseed wasn't tampered with (since it is part of
|
||||
* calculating G) */
|
||||
if (pseed.len > pseed_.len) {
|
||||
/* handle the case of zero pad for pseed */
|
||||
int extra = pseed.len - pseed_.len;
|
||||
int i;
|
||||
for (i = 0; i < extra; i++) {
|
||||
if (pseed.data[i] != 0) {
|
||||
*result = SECFailure;
|
||||
goto cleanup;
|
||||
}
|
||||
}
|
||||
pseed.data += extra;
|
||||
pseed.len -= extra;
|
||||
/* the rest is handled in the normal compare below */
|
||||
}
|
||||
CHECKPARAM(SECITEM_CompareItem(&pseed, &pseed_) == SECEqual);
|
||||
if (vfy->counter != -1) {
|
||||
CHECKPARAM(pgen_counter < counter_max);
|
||||
CHECKPARAM(qgen_counter < counter_max);
|
||||
CHECKPARAM((pgen_counter_ == pgen_counter));
|
||||
CHECKPARAM((qgen_counter_ == qgen_counter));
|
||||
}
|
||||
} else if (vfy->counter == -1) {
|
||||
/* If counter is set to -1, we are really only verifying G, skip
|
||||
* the remainder of the checks for P */
|
||||
|
|
|
|||
|
|
@ -1032,13 +1032,19 @@ AES_CreateContext(const unsigned char *key, const unsigned char *iv,
|
|||
void
|
||||
AES_DestroyContext(AESContext *cx, PRBool freeit)
|
||||
{
|
||||
void *mem = cx->mem;
|
||||
if (cx->worker_cx && cx->destroy) {
|
||||
(*cx->destroy)(cx->worker_cx, PR_TRUE);
|
||||
cx->worker_cx = NULL;
|
||||
cx->destroy = NULL;
|
||||
}
|
||||
PORT_Memset(cx, 0, sizeof(AESContext));
|
||||
if (freeit) {
|
||||
PORT_Free(cx->mem);
|
||||
PORT_Free(mem);
|
||||
} else {
|
||||
/* if we are not freeing the context, restore mem, We may get called
|
||||
* again to actually free the context */
|
||||
cx->mem = mem;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue