import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo

This commit is contained in:
Roy Tam 2018-01-19 03:59:58 +08:00
commit dcd9973243
150858 changed files with 23884658 additions and 0 deletions

View file

@ -0,0 +1,46 @@
#! gmake
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#######################################################################
# (1) Include initial platform-independent assignments (MANDATORY). #
#######################################################################
include manifest.mn
#######################################################################
# (2) Include "global" configuration information. (OPTIONAL) #
#######################################################################
include $(CORE_DEPTH)/coreconf/config.mk
#######################################################################
# (3) Include "component" configuration information. (OPTIONAL) #
#######################################################################
#######################################################################
# (4) Include "local" platform-dependent assignments (OPTIONAL). #
#######################################################################
include ../platlibs.mk
#######################################################################
# (5) Execute "global" rules. (OPTIONAL) #
#######################################################################
include $(CORE_DEPTH)/coreconf/rules.mk
#######################################################################
# (6) Execute "component" rules. (OPTIONAL) #
#######################################################################
#######################################################################
# (7) Execute "local" rules. (OPTIONAL). #
#######################################################################
include ../platrules.mk

View file

@ -0,0 +1,16 @@
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
DEPTH = ../..
CORE_DEPTH = ../..
# MODULE public and private header directories are implicitly REQUIRED.
MODULE = nss
CSRCS = pk11ectest.c
PROGRAM = pk11ectest
USE_STATIC_LIBS = 1

View file

@ -0,0 +1,171 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "blapi.h"
#include "nss.h"
#include "secutil.h"
#include "secitem.h"
#include "nspr.h"
#include "pk11pub.h"
#include <stdio.h>
void
printBuf(const SECItem *item)
{
int i;
if (!item || !item->len) {
printf("(null)\n");
return;
}
for (i = 0; i < item->len; i++) {
printf("%02x", item->data[i]);
}
printf("\n");
}
void
PrintKey(PK11SymKey *symKey)
{
char *name = PK11_GetSymKeyNickname(symKey);
int len = PK11_GetKeyLength(symKey);
int strength = PK11_GetKeyStrength(symKey, NULL);
SECItem *value = NULL;
CK_KEY_TYPE type = PK11_GetSymKeyType(symKey);
(void)PK11_ExtractKeyValue(symKey);
value = PK11_GetKeyData(symKey);
printf("%s %3d %4d %s ", name ? name : "no-name", len, strength,
type == CKK_GENERIC_SECRET ? "generic" : "ERROR! UNKNOWN KEY TYPE");
printBuf(value);
PORT_Free(name);
}
SECStatus
ectest_curve_pkcs11(SECOidTag oid)
{
SECKEYECParams pk_11_ecParams = { siBuffer, NULL, 0 };
SECKEYPublicKey *pubKey = NULL;
SECKEYPrivateKey *privKey = NULL;
SECOidData *oidData = NULL;
CK_MECHANISM_TYPE target = CKM_TLS12_MASTER_KEY_DERIVE_DH;
PK11SymKey *symKey = NULL;
SECStatus rv = SECFailure;
oidData = SECOID_FindOIDByTag(oid);
if (oidData == NULL) {
printf(" >>> SECOID_FindOIDByTag failed.\n");
goto cleanup;
}
PORT_Assert(oidData->oid.len < 256);
SECITEM_AllocItem(NULL, &pk_11_ecParams, (2 + oidData->oid.len));
pk_11_ecParams.data[0] = SEC_ASN1_OBJECT_ID; /* we have to prepend 0x06 */
pk_11_ecParams.data[1] = oidData->oid.len;
memcpy(pk_11_ecParams.data + 2, oidData->oid.data, oidData->oid.len);
privKey = SECKEY_CreateECPrivateKey(&pk_11_ecParams, &pubKey, NULL);
if (!privKey || !pubKey) {
printf(" >>> SECKEY_CreateECPrivateKey failed.\n");
goto cleanup;
}
symKey = PK11_PubDeriveWithKDF(privKey, pubKey, PR_FALSE, NULL, NULL,
CKM_ECDH1_DERIVE, target, CKA_DERIVE, 0,
CKD_NULL, NULL, NULL);
if (!symKey) {
printf(" >>> PK11_PubDeriveWithKDF failed.\n");
goto cleanup;
}
PrintKey(symKey);
rv = SECSuccess;
cleanup:
if (privKey) {
SECKEY_DestroyPrivateKey(privKey);
}
if (pubKey) {
SECKEY_DestroyPublicKey(pubKey);
}
if (symKey) {
PK11_FreeSymKey(symKey);
}
SECITEM_FreeItem(&pk_11_ecParams, PR_FALSE);
return rv;
}
void
printUsage(char *prog)
{
printf("Usage: %s [-fp] [-nd]\n"
"\t-n: NIST curves\n"
"\t-d: non-NIST curves\n"
"You have to specify at at least one of n or d.\n"
"By default no tests are executed.\n",
prog);
}
/* Performs tests of elliptic curve cryptography over prime fields If
* tests fail, then it prints an error message, aborts, and returns an
* error code. Otherwise, returns 0. */
int
main(int argv, char **argc)
{
SECStatus rv = SECSuccess;
int i = 0;
int nist = 0;
int nonnist = 0;
SECOidTag nistOids[3] = { SEC_OID_SECG_EC_SECP256R1,
SEC_OID_SECG_EC_SECP384R1,
SEC_OID_SECG_EC_SECP521R1 };
for (i = 1; i < argv; i++) {
if (PL_strcasecmp(argc[i], "-n") == 0) {
nist = 1;
} else if (PL_strcasecmp(argc[i], "-d") == 0) {
nonnist = 1;
} else {
printUsage(argc[0]);
return 1;
}
}
if (!nist && !nonnist) {
printUsage(argc[0]);
return 1;
}
rv = NSS_NoDB_Init(NULL);
if (rv != SECSuccess) {
SECU_PrintError("Error:", "NSS_NoDB_Init");
goto cleanup;
}
if (nonnist) {
if (ectest_curve_pkcs11(SEC_OID_CURVE25519) != SECSuccess) {
printf("not okay (OID %d) - PK11 test\n", SEC_OID_CURVE25519);
rv = SECFailure;
} else {
printf("okay (OID %d) - PK11 test\n", SEC_OID_CURVE25519);
}
}
if (nist) {
for (i = 0; i < 3; ++i) {
if (ectest_curve_pkcs11(nistOids[i]) != SECSuccess) {
printf("not okay (OID %d) - PK11 test\n", nistOids[i]);
rv = SECFailure;
} else {
printf("okay (OID %d) - PK11 test\n", nistOids[i]);
}
}
}
cleanup:
rv |= NSS_Shutdown();
if (rv != SECSuccess) {
printf("Error: exiting with error value\n");
}
return rv;
}

View file

@ -0,0 +1,31 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
{
'includes': [
'../../coreconf/config.gypi',
'../../cmd/platlibs.gypi'
],
'targets': [
{
'target_name': 'pk11ectest',
'type': 'executable',
'sources': [
'pk11ectest.c'
],
'dependencies': [
'<(DEPTH)/exports.gyp:nss_exports',
'<(DEPTH)/lib/sqlite/sqlite.gyp:sqlite3'
]
}
],
'target_defaults': {
'defines': [
'NSS_USE_STATIC_LIBS'
]
},
'variables': {
'module': 'nss',
'use_static_libs': 1
}
}