mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 15:27:32 +09:00
Update NSS to 3.48 while keeping vc2013 hackfix and no-sslkeylogfile intact.
This commit is contained in:
parent
0b9855b841
commit
171849c8e5
351 changed files with 115185 additions and 57946 deletions
45
security/nss/gtests/pkcs11testmodule/Makefile
Normal file
45
security/nss/gtests/pkcs11testmodule/Makefile
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
#! 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 config.mk
|
||||
|
||||
#######################################################################
|
||||
# (5) Execute "global" rules. (OPTIONAL) #
|
||||
#######################################################################
|
||||
|
||||
include $(CORE_DEPTH)/coreconf/rules.mk
|
||||
|
||||
#######################################################################
|
||||
# (6) Execute "component" rules. (OPTIONAL) #
|
||||
#######################################################################
|
||||
|
||||
|
||||
#######################################################################
|
||||
# (7) Execute "local" rules. (OPTIONAL). #
|
||||
#######################################################################
|
||||
|
||||
export:: private_export
|
||||
16
security/nss/gtests/pkcs11testmodule/config.mk
Normal file
16
security/nss/gtests/pkcs11testmodule/config.mk
Normal 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/.
|
||||
|
||||
# can't do this in manifest.mn because OS_TARGET isn't defined there.
|
||||
ifeq (,$(filter-out WIN%,$(OS_TARGET)))
|
||||
|
||||
# don't want the 32 in the shared library name
|
||||
SHARED_LIBRARY = $(OBJDIR)/$(DLL_PREFIX)$(LIBRARY_NAME)$(LIBRARY_VERSION).$(DLL_SUFFIX)
|
||||
IMPORT_LIBRARY = $(OBJDIR)/$(IMPORT_LIB_PREFIX)$(LIBRARY_NAME)$(LIBRARY_VERSION)$(IMPORT_LIB_SUFFIX)
|
||||
|
||||
RES = $(OBJDIR)/$(LIBRARY_NAME).res
|
||||
RESNAME = $(LIBRARY_NAME).rc
|
||||
|
||||
endif
|
||||
22
security/nss/gtests/pkcs11testmodule/manifest.mn
Normal file
22
security/nss/gtests/pkcs11testmodule/manifest.mn
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#
|
||||
# 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/.
|
||||
CORE_DEPTH = ../..
|
||||
DEPTH = ../..
|
||||
MODULE = nss
|
||||
|
||||
CPPSRCS = \
|
||||
pkcs11testmodule.cpp \
|
||||
$(NULL)
|
||||
|
||||
INCLUDES += -I$(CORE_DEPTH)/cpputil
|
||||
|
||||
REQUIRES = cpputil
|
||||
|
||||
MAPFILE = $(OBJDIR)/pkcs11testmodule.def
|
||||
|
||||
LIBRARY_NAME = pkcs11testmodule
|
||||
|
||||
EXTRA_LIBS = $(DIST)/lib/$(LIB_PREFIX)cpputil.$(LIB_SUFFIX) \
|
||||
$(NULL)
|
||||
658
security/nss/gtests/pkcs11testmodule/pkcs11testmodule.cpp
Normal file
658
security/nss/gtests/pkcs11testmodule/pkcs11testmodule.cpp
Normal file
|
|
@ -0,0 +1,658 @@
|
|||
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* 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/. */
|
||||
|
||||
// This is a testing PKCS #11 module that simulates a token being inserted and
|
||||
// removed from a slot every 50ms. This is achieved mainly in
|
||||
// Test_C_WaitForSlotEvent. If the application that loaded this module calls
|
||||
// C_WaitForSlotEvent, this module waits for 50ms and returns, having changed
|
||||
// its internal state to report that the token has either been inserted or
|
||||
// removed, as appropriate.
|
||||
// This module also provides an alternate token that is always present for tests
|
||||
// that don't want the cyclic behavior described above.
|
||||
|
||||
#include <assert.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef _WIN32
|
||||
# include <windows.h> // for Sleep
|
||||
#else
|
||||
# include <unistd.h> // for usleep
|
||||
#endif
|
||||
|
||||
#include "pkcs11t.h"
|
||||
|
||||
#undef CK_DECLARE_FUNCTION
|
||||
|
||||
#ifdef _WIN32
|
||||
#define CK_DECLARE_FUNCTION(rtype, func) extern rtype __declspec(dllexport) func
|
||||
#else
|
||||
#define CK_DECLARE_FUNCTION(rtype, func) extern rtype func
|
||||
#endif
|
||||
|
||||
#include "pkcs11.h"
|
||||
|
||||
#if __cplusplus < 201103L
|
||||
# include <prtypes.h>
|
||||
# define static_assert(condition, message) PR_STATIC_ASSERT(condition)
|
||||
#endif
|
||||
|
||||
CK_RV Test_C_Initialize(CK_VOID_PTR) { return CKR_OK; }
|
||||
|
||||
CK_RV Test_C_Finalize(CK_VOID_PTR) { return CKR_OK; }
|
||||
|
||||
static const CK_VERSION CryptokiVersion = {2, 2};
|
||||
static const CK_VERSION TestLibraryVersion = {0, 0};
|
||||
static const char TestLibraryDescription[] = "Test PKCS11 Library";
|
||||
static const char TestManufacturerID[] = "Test PKCS11 Manufacturer ID";
|
||||
|
||||
/* The dest buffer is one in the CK_INFO or CK_TOKEN_INFO structs.
|
||||
* Those buffers are padded with spaces. DestSize corresponds to the declared
|
||||
* size for those buffers (e.g. 32 for `char foo[32]`).
|
||||
* The src buffer is a string literal. SrcSize includes the string
|
||||
* termination character (e.g. 4 for `const char foo[] = "foo"` */
|
||||
template <size_t DestSize, size_t SrcSize>
|
||||
void CopyString(unsigned char (&dest)[DestSize], const char (&src)[SrcSize]) {
|
||||
static_assert(DestSize >= SrcSize - 1, "DestSize >= SrcSize - 1");
|
||||
memcpy(dest, src, SrcSize - 1);
|
||||
memset(dest + SrcSize - 1, ' ', DestSize - SrcSize + 1);
|
||||
}
|
||||
|
||||
CK_RV Test_C_GetInfo(CK_INFO_PTR pInfo) {
|
||||
if (!pInfo) {
|
||||
return CKR_ARGUMENTS_BAD;
|
||||
}
|
||||
|
||||
pInfo->cryptokiVersion = CryptokiVersion;
|
||||
CopyString(pInfo->manufacturerID, TestManufacturerID);
|
||||
pInfo->flags = 0; // must be 0
|
||||
CopyString(pInfo->libraryDescription, TestLibraryDescription);
|
||||
pInfo->libraryVersion = TestLibraryVersion;
|
||||
return CKR_OK;
|
||||
}
|
||||
|
||||
CK_RV Test_C_GetFunctionList(CK_FUNCTION_LIST_PTR_PTR) { return CKR_OK; }
|
||||
|
||||
static int tokenPresent = 0;
|
||||
|
||||
// The token in slot 4 has 2 objects. Both of them are profile object
|
||||
// and identified by object ID 1 or 2.
|
||||
static bool readingProfile = false;
|
||||
static const CK_PROFILE_ID profiles[] = {CKP_PUBLIC_CERTIFICATES_TOKEN,
|
||||
CKP_BASELINE_PROVIDER};
|
||||
static int profileIndex = 0;
|
||||
|
||||
CK_RV Test_C_GetSlotList(CK_BBOOL limitToTokensPresent,
|
||||
CK_SLOT_ID_PTR pSlotList, CK_ULONG_PTR pulCount) {
|
||||
if (!pulCount) {
|
||||
return CKR_ARGUMENTS_BAD;
|
||||
}
|
||||
|
||||
CK_SLOT_ID slots[4];
|
||||
CK_ULONG slotCount = 0;
|
||||
|
||||
// We always return slot 2 and 4.
|
||||
slots[slotCount++] = 2;
|
||||
slots[slotCount++] = 4;
|
||||
|
||||
// Slot 1 is a removable slot where a token is present if
|
||||
// tokenPresent = CK_TRUE.
|
||||
if (tokenPresent || !limitToTokensPresent) {
|
||||
slots[slotCount++] = 1;
|
||||
}
|
||||
|
||||
// Slot 3 is a removable slot which never has a token.
|
||||
if (!limitToTokensPresent) {
|
||||
slots[slotCount++] = 3;
|
||||
}
|
||||
|
||||
if (pSlotList) {
|
||||
if (*pulCount < slotCount) {
|
||||
return CKR_BUFFER_TOO_SMALL;
|
||||
}
|
||||
memcpy(pSlotList, slots, sizeof(CK_SLOT_ID) * slotCount);
|
||||
}
|
||||
|
||||
*pulCount = slotCount;
|
||||
return CKR_OK;
|
||||
}
|
||||
|
||||
static const char TestSlotDescription[] = "Test PKCS11 Slot";
|
||||
static const char TestSlot2Description[] = "Test PKCS11 Slot 二";
|
||||
static const char TestSlot3Description[] = "Empty PKCS11 Slot";
|
||||
static const char TestSlot4Description[] = "Test PKCS11 Public Certs Slot";
|
||||
|
||||
CK_RV Test_C_GetSlotInfo(CK_SLOT_ID slotID, CK_SLOT_INFO_PTR pInfo) {
|
||||
if (!pInfo) {
|
||||
return CKR_ARGUMENTS_BAD;
|
||||
}
|
||||
|
||||
switch (slotID) {
|
||||
case 1:
|
||||
CopyString(pInfo->slotDescription, TestSlotDescription);
|
||||
pInfo->flags =
|
||||
(tokenPresent ? CKF_TOKEN_PRESENT : 0) | CKF_REMOVABLE_DEVICE;
|
||||
break;
|
||||
case 2:
|
||||
CopyString(pInfo->slotDescription, TestSlot2Description);
|
||||
pInfo->flags = CKF_TOKEN_PRESENT | CKF_REMOVABLE_DEVICE;
|
||||
break;
|
||||
case 3:
|
||||
CopyString(pInfo->slotDescription, TestSlot3Description);
|
||||
pInfo->flags = CKF_REMOVABLE_DEVICE;
|
||||
break;
|
||||
case 4:
|
||||
CopyString(pInfo->slotDescription, TestSlot4Description);
|
||||
pInfo->flags = CKF_TOKEN_PRESENT | CKF_REMOVABLE_DEVICE;
|
||||
break;
|
||||
default:
|
||||
return CKR_ARGUMENTS_BAD;
|
||||
}
|
||||
|
||||
CopyString(pInfo->manufacturerID, TestManufacturerID);
|
||||
pInfo->hardwareVersion = TestLibraryVersion;
|
||||
pInfo->firmwareVersion = TestLibraryVersion;
|
||||
return CKR_OK;
|
||||
}
|
||||
|
||||
// Deliberately include énye to ensure we're handling encoding correctly.
|
||||
// The PKCS #11 base specification v2.20 specifies that strings be encoded
|
||||
// as UTF-8.
|
||||
static const char TestTokenLabel[] = "Test PKCS11 Tokeñ Label";
|
||||
static const char TestToken2Label[] = "Test PKCS11 Tokeñ 2 Label";
|
||||
static const char TestToken4Label[] = "Test PKCS11 Public Certs Token";
|
||||
static const char TestTokenModel[] = "Test Model";
|
||||
|
||||
CK_RV Test_C_GetTokenInfo(CK_SLOT_ID slotID, CK_TOKEN_INFO_PTR pInfo) {
|
||||
if (!pInfo) {
|
||||
return CKR_ARGUMENTS_BAD;
|
||||
}
|
||||
|
||||
switch (slotID) {
|
||||
case 1:
|
||||
CopyString(pInfo->label, TestTokenLabel);
|
||||
break;
|
||||
case 2:
|
||||
CopyString(pInfo->label, TestToken2Label);
|
||||
break;
|
||||
case 4:
|
||||
CopyString(pInfo->label, TestToken4Label);
|
||||
break;
|
||||
default:
|
||||
return CKR_ARGUMENTS_BAD;
|
||||
}
|
||||
|
||||
CopyString(pInfo->manufacturerID, TestManufacturerID);
|
||||
CopyString(pInfo->model, TestTokenModel);
|
||||
memset(pInfo->serialNumber, 0, sizeof(pInfo->serialNumber));
|
||||
pInfo->flags = CKF_TOKEN_INITIALIZED;
|
||||
pInfo->ulMaxSessionCount = 1;
|
||||
pInfo->ulSessionCount = 0;
|
||||
pInfo->ulMaxRwSessionCount = 1;
|
||||
pInfo->ulRwSessionCount = 0;
|
||||
pInfo->ulMaxPinLen = 4;
|
||||
pInfo->ulMinPinLen = 4;
|
||||
pInfo->ulTotalPublicMemory = 1024;
|
||||
pInfo->ulFreePublicMemory = 1024;
|
||||
pInfo->ulTotalPrivateMemory = 1024;
|
||||
pInfo->ulFreePrivateMemory = 1024;
|
||||
pInfo->hardwareVersion = TestLibraryVersion;
|
||||
pInfo->firmwareVersion = TestLibraryVersion;
|
||||
memset(pInfo->utcTime, 0, sizeof(pInfo->utcTime));
|
||||
return CKR_OK;
|
||||
}
|
||||
|
||||
CK_RV Test_C_GetMechanismList(CK_SLOT_ID, CK_MECHANISM_TYPE_PTR,
|
||||
CK_ULONG_PTR pulCount) {
|
||||
if (!pulCount) {
|
||||
return CKR_ARGUMENTS_BAD;
|
||||
}
|
||||
|
||||
*pulCount = 0;
|
||||
return CKR_OK;
|
||||
}
|
||||
|
||||
CK_RV Test_C_GetMechanismInfo(CK_SLOT_ID, CK_MECHANISM_TYPE,
|
||||
CK_MECHANISM_INFO_PTR) {
|
||||
return CKR_OK;
|
||||
}
|
||||
|
||||
CK_RV Test_C_InitToken(CK_SLOT_ID, CK_UTF8CHAR_PTR, CK_ULONG, CK_UTF8CHAR_PTR) {
|
||||
return CKR_OK;
|
||||
}
|
||||
|
||||
CK_RV Test_C_InitPIN(CK_SESSION_HANDLE, CK_UTF8CHAR_PTR, CK_ULONG) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_SetPIN(CK_SESSION_HANDLE, CK_UTF8CHAR_PTR, CK_ULONG,
|
||||
CK_UTF8CHAR_PTR, CK_ULONG) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_OpenSession(CK_SLOT_ID slotID, CK_FLAGS, CK_VOID_PTR, CK_NOTIFY,
|
||||
CK_SESSION_HANDLE_PTR phSession) {
|
||||
switch (slotID) {
|
||||
case 1:
|
||||
*phSession = 1;
|
||||
break;
|
||||
case 2:
|
||||
*phSession = 2;
|
||||
break;
|
||||
case 4:
|
||||
*phSession = 4;
|
||||
break;
|
||||
default:
|
||||
return CKR_ARGUMENTS_BAD;
|
||||
}
|
||||
|
||||
return CKR_OK;
|
||||
}
|
||||
|
||||
CK_RV Test_C_CloseSession(CK_SESSION_HANDLE) { return CKR_OK; }
|
||||
|
||||
CK_RV Test_C_CloseAllSessions(CK_SLOT_ID) { return CKR_OK; }
|
||||
|
||||
CK_RV Test_C_GetSessionInfo(CK_SESSION_HANDLE hSession,
|
||||
CK_SESSION_INFO_PTR pInfo) {
|
||||
if (!pInfo) {
|
||||
return CKR_ARGUMENTS_BAD;
|
||||
}
|
||||
|
||||
switch (hSession) {
|
||||
case 1:
|
||||
pInfo->slotID = 1;
|
||||
break;
|
||||
case 2:
|
||||
pInfo->slotID = 2;
|
||||
break;
|
||||
case 4:
|
||||
pInfo->slotID = 4;
|
||||
break;
|
||||
default:
|
||||
return CKR_ARGUMENTS_BAD;
|
||||
}
|
||||
|
||||
pInfo->state = CKS_RO_PUBLIC_SESSION;
|
||||
pInfo->flags = CKF_SERIAL_SESSION;
|
||||
return CKR_OK;
|
||||
}
|
||||
|
||||
CK_RV Test_C_GetOperationState(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_SetOperationState(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG,
|
||||
CK_OBJECT_HANDLE, CK_OBJECT_HANDLE) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_Login(CK_SESSION_HANDLE, CK_USER_TYPE, CK_UTF8CHAR_PTR, CK_ULONG) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_Logout(CK_SESSION_HANDLE) { return CKR_FUNCTION_NOT_SUPPORTED; }
|
||||
|
||||
CK_RV Test_C_CreateObject(CK_SESSION_HANDLE, CK_ATTRIBUTE_PTR, CK_ULONG,
|
||||
CK_OBJECT_HANDLE_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_CopyObject(CK_SESSION_HANDLE, CK_OBJECT_HANDLE, CK_ATTRIBUTE_PTR,
|
||||
CK_ULONG, CK_OBJECT_HANDLE_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_DestroyObject(CK_SESSION_HANDLE, CK_OBJECT_HANDLE) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_GetObjectSize(CK_SESSION_HANDLE, CK_OBJECT_HANDLE, CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_GetAttributeValue(CK_SESSION_HANDLE hSession,
|
||||
CK_OBJECT_HANDLE hObject,
|
||||
CK_ATTRIBUTE_PTR pTemplate, CK_ULONG ulCount) {
|
||||
if (hSession == 4) {
|
||||
assert(hObject >= 1 &&
|
||||
hObject - 1 < sizeof(profiles) / sizeof(profiles[0]));
|
||||
for (CK_ULONG count = 0; count < ulCount; count++) {
|
||||
if (pTemplate[count].type == CKA_PROFILE_ID) {
|
||||
if (pTemplate[count].pValue) {
|
||||
assert(pTemplate[count].ulValueLen == sizeof(CK_ULONG));
|
||||
CK_ULONG value = profiles[hObject - 1];
|
||||
memcpy(pTemplate[count].pValue, &value, sizeof(value));
|
||||
} else {
|
||||
pTemplate[count].ulValueLen = sizeof(CK_ULONG);
|
||||
}
|
||||
} else {
|
||||
pTemplate[count].ulValueLen = (CK_ULONG)-1;
|
||||
}
|
||||
}
|
||||
return CKR_OK;
|
||||
}
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_SetAttributeValue(CK_SESSION_HANDLE, CK_OBJECT_HANDLE,
|
||||
CK_ATTRIBUTE_PTR, CK_ULONG) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_FindObjectsInit(CK_SESSION_HANDLE hSession,
|
||||
CK_ATTRIBUTE_PTR pTemplate, CK_ULONG ulCount) {
|
||||
// Slot 4
|
||||
if (hSession == 4) {
|
||||
for (CK_ULONG count = 0; count < ulCount; count++) {
|
||||
CK_ATTRIBUTE attribute = pTemplate[count];
|
||||
if (attribute.type == CKA_CLASS) {
|
||||
assert(attribute.ulValueLen == sizeof(CK_ULONG));
|
||||
|
||||
CK_ULONG value;
|
||||
memcpy(&value, attribute.pValue, attribute.ulValueLen);
|
||||
if (value == CKO_PROFILE) {
|
||||
readingProfile = true;
|
||||
profileIndex = 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return CKR_OK;
|
||||
}
|
||||
|
||||
CK_RV Test_C_FindObjects(CK_SESSION_HANDLE hSession,
|
||||
CK_OBJECT_HANDLE_PTR phObject,
|
||||
CK_ULONG ulMaxObjectCount,
|
||||
CK_ULONG_PTR pulObjectCount) {
|
||||
if (readingProfile) {
|
||||
assert(hSession == 4);
|
||||
CK_ULONG count = ulMaxObjectCount;
|
||||
size_t remaining = sizeof(profiles) / sizeof(profiles[0]) - profileIndex;
|
||||
if (count > remaining) {
|
||||
count = remaining;
|
||||
}
|
||||
for (CK_ULONG i = 0; i < count; i++) {
|
||||
phObject[i] = i + 1;
|
||||
}
|
||||
profileIndex += count;
|
||||
*pulObjectCount = count;
|
||||
} else {
|
||||
*pulObjectCount = 0;
|
||||
}
|
||||
return CKR_OK;
|
||||
}
|
||||
|
||||
CK_RV Test_C_FindObjectsFinal(CK_SESSION_HANDLE hSession) {
|
||||
readingProfile = false;
|
||||
return CKR_OK;
|
||||
}
|
||||
|
||||
CK_RV Test_C_EncryptInit(CK_SESSION_HANDLE, CK_MECHANISM_PTR,
|
||||
CK_OBJECT_HANDLE) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_Encrypt(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG, CK_BYTE_PTR,
|
||||
CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_EncryptUpdate(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG,
|
||||
CK_BYTE_PTR, CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_EncryptFinal(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_DecryptInit(CK_SESSION_HANDLE, CK_MECHANISM_PTR,
|
||||
CK_OBJECT_HANDLE) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_Decrypt(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG, CK_BYTE_PTR,
|
||||
CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_DecryptUpdate(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG,
|
||||
CK_BYTE_PTR, CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_DecryptFinal(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_DigestInit(CK_SESSION_HANDLE, CK_MECHANISM_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_Digest(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG, CK_BYTE_PTR,
|
||||
CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_DigestUpdate(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_DigestKey(CK_SESSION_HANDLE, CK_OBJECT_HANDLE) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_DigestFinal(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_SignInit(CK_SESSION_HANDLE, CK_MECHANISM_PTR, CK_OBJECT_HANDLE) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_Sign(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG, CK_BYTE_PTR,
|
||||
CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_SignUpdate(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_SignFinal(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_SignRecoverInit(CK_SESSION_HANDLE, CK_MECHANISM_PTR,
|
||||
CK_OBJECT_HANDLE) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_SignRecover(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG, CK_BYTE_PTR,
|
||||
CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_VerifyInit(CK_SESSION_HANDLE, CK_MECHANISM_PTR, CK_OBJECT_HANDLE) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_Verify(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG, CK_BYTE_PTR,
|
||||
CK_ULONG) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_VerifyUpdate(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_VerifyFinal(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_VerifyRecoverInit(CK_SESSION_HANDLE, CK_MECHANISM_PTR,
|
||||
CK_OBJECT_HANDLE) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_VerifyRecover(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG,
|
||||
CK_BYTE_PTR, CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_DigestEncryptUpdate(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG,
|
||||
CK_BYTE_PTR, CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_DecryptDigestUpdate(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG,
|
||||
CK_BYTE_PTR, CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_SignEncryptUpdate(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG,
|
||||
CK_BYTE_PTR, CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_DecryptVerifyUpdate(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG,
|
||||
CK_BYTE_PTR, CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_GenerateKey(CK_SESSION_HANDLE, CK_MECHANISM_PTR, CK_ATTRIBUTE_PTR,
|
||||
CK_ULONG, CK_OBJECT_HANDLE_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_GenerateKeyPair(CK_SESSION_HANDLE, CK_MECHANISM_PTR,
|
||||
CK_ATTRIBUTE_PTR, CK_ULONG, CK_ATTRIBUTE_PTR,
|
||||
CK_ULONG, CK_OBJECT_HANDLE_PTR,
|
||||
CK_OBJECT_HANDLE_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_WrapKey(CK_SESSION_HANDLE, CK_MECHANISM_PTR, CK_OBJECT_HANDLE,
|
||||
CK_OBJECT_HANDLE, CK_BYTE_PTR, CK_ULONG_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_UnwrapKey(CK_SESSION_HANDLE, CK_MECHANISM_PTR, CK_OBJECT_HANDLE,
|
||||
CK_BYTE_PTR, CK_ULONG, CK_ATTRIBUTE_PTR, CK_ULONG,
|
||||
CK_OBJECT_HANDLE_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_DeriveKey(CK_SESSION_HANDLE, CK_MECHANISM_PTR, CK_OBJECT_HANDLE,
|
||||
CK_ATTRIBUTE_PTR, CK_ULONG, CK_OBJECT_HANDLE_PTR) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_SeedRandom(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_GenerateRandom(CK_SESSION_HANDLE, CK_BYTE_PTR, CK_ULONG) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_GetFunctionStatus(CK_SESSION_HANDLE) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_CancelFunction(CK_SESSION_HANDLE) {
|
||||
return CKR_FUNCTION_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
CK_RV Test_C_WaitForSlotEvent(CK_FLAGS, CK_SLOT_ID_PTR pSlot, CK_VOID_PTR) {
|
||||
#ifdef _WIN32
|
||||
Sleep(50); // Sleep takes the duration argument as milliseconds
|
||||
#else
|
||||
usleep(50000); // usleep takes the duration argument as microseconds
|
||||
#endif
|
||||
*pSlot = 1;
|
||||
tokenPresent = !tokenPresent;
|
||||
return CKR_OK;
|
||||
}
|
||||
|
||||
static CK_FUNCTION_LIST FunctionList = {{2, 2},
|
||||
Test_C_Initialize,
|
||||
Test_C_Finalize,
|
||||
Test_C_GetInfo,
|
||||
Test_C_GetFunctionList,
|
||||
Test_C_GetSlotList,
|
||||
Test_C_GetSlotInfo,
|
||||
Test_C_GetTokenInfo,
|
||||
Test_C_GetMechanismList,
|
||||
Test_C_GetMechanismInfo,
|
||||
Test_C_InitToken,
|
||||
Test_C_InitPIN,
|
||||
Test_C_SetPIN,
|
||||
Test_C_OpenSession,
|
||||
Test_C_CloseSession,
|
||||
Test_C_CloseAllSessions,
|
||||
Test_C_GetSessionInfo,
|
||||
Test_C_GetOperationState,
|
||||
Test_C_SetOperationState,
|
||||
Test_C_Login,
|
||||
Test_C_Logout,
|
||||
Test_C_CreateObject,
|
||||
Test_C_CopyObject,
|
||||
Test_C_DestroyObject,
|
||||
Test_C_GetObjectSize,
|
||||
Test_C_GetAttributeValue,
|
||||
Test_C_SetAttributeValue,
|
||||
Test_C_FindObjectsInit,
|
||||
Test_C_FindObjects,
|
||||
Test_C_FindObjectsFinal,
|
||||
Test_C_EncryptInit,
|
||||
Test_C_Encrypt,
|
||||
Test_C_EncryptUpdate,
|
||||
Test_C_EncryptFinal,
|
||||
Test_C_DecryptInit,
|
||||
Test_C_Decrypt,
|
||||
Test_C_DecryptUpdate,
|
||||
Test_C_DecryptFinal,
|
||||
Test_C_DigestInit,
|
||||
Test_C_Digest,
|
||||
Test_C_DigestUpdate,
|
||||
Test_C_DigestKey,
|
||||
Test_C_DigestFinal,
|
||||
Test_C_SignInit,
|
||||
Test_C_Sign,
|
||||
Test_C_SignUpdate,
|
||||
Test_C_SignFinal,
|
||||
Test_C_SignRecoverInit,
|
||||
Test_C_SignRecover,
|
||||
Test_C_VerifyInit,
|
||||
Test_C_Verify,
|
||||
Test_C_VerifyUpdate,
|
||||
Test_C_VerifyFinal,
|
||||
Test_C_VerifyRecoverInit,
|
||||
Test_C_VerifyRecover,
|
||||
Test_C_DigestEncryptUpdate,
|
||||
Test_C_DecryptDigestUpdate,
|
||||
Test_C_SignEncryptUpdate,
|
||||
Test_C_DecryptVerifyUpdate,
|
||||
Test_C_GenerateKey,
|
||||
Test_C_GenerateKeyPair,
|
||||
Test_C_WrapKey,
|
||||
Test_C_UnwrapKey,
|
||||
Test_C_DeriveKey,
|
||||
Test_C_SeedRandom,
|
||||
Test_C_GenerateRandom,
|
||||
Test_C_GetFunctionStatus,
|
||||
Test_C_CancelFunction,
|
||||
Test_C_WaitForSlotEvent};
|
||||
|
||||
#ifdef _WIN32
|
||||
__declspec(dllexport)
|
||||
#endif
|
||||
|
||||
CK_RV C_GetFunctionList(CK_FUNCTION_LIST_PTR_PTR ppFunctionList) {
|
||||
*ppFunctionList = &FunctionList;
|
||||
return CKR_OK;
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
;+NSS_3.48 { # NSS 3.48 release
|
||||
;+ global:
|
||||
LIBRARY pkcs11testmodule ;-
|
||||
EXPORTS ;-
|
||||
C_GetFunctionList;
|
||||
;+ local:
|
||||
;+ *;
|
||||
;+};
|
||||
25
security/nss/gtests/pkcs11testmodule/pkcs11testmodule.gyp
Normal file
25
security/nss/gtests/pkcs11testmodule/pkcs11testmodule.gyp
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# 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',
|
||||
'../common/gtest.gypi',
|
||||
],
|
||||
'targets': [
|
||||
{
|
||||
'target_name': 'pkcs11testmodule',
|
||||
'type': 'shared_library',
|
||||
'sources': [
|
||||
'pkcs11testmodule.cpp',
|
||||
],
|
||||
'dependencies': [
|
||||
'<(DEPTH)/exports.gyp:nss_exports',
|
||||
'<(DEPTH)/cpputil/cpputil.gyp:cpputil',
|
||||
],
|
||||
}
|
||||
],
|
||||
'variables': {
|
||||
'module': 'nss'
|
||||
}
|
||||
}
|
||||
60
security/nss/gtests/pkcs11testmodule/pkcs11testmodule.rc
Normal file
60
security/nss/gtests/pkcs11testmodule/pkcs11testmodule.rc
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
/* 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 <winver.h>
|
||||
|
||||
#define MY_LIBNAME "pkcs11testmodule"
|
||||
#define MY_FILEDESCRIPTION "NSS PKCS #11 Test Module"
|
||||
|
||||
#ifdef _DEBUG
|
||||
#define MY_DEBUG_STR " (debug)"
|
||||
#define MY_FILEFLAGS_1 VS_FF_DEBUG
|
||||
#else
|
||||
#define MY_DEBUG_STR ""
|
||||
#define MY_FILEFLAGS_1 0x0L
|
||||
#endif
|
||||
#define MY_FILEFLAGS_2 MY_FILEFLAGS_1
|
||||
|
||||
#ifdef WINNT
|
||||
#define MY_FILEOS VOS_NT_WINDOWS32
|
||||
#else
|
||||
#define MY_FILEOS VOS__WINDOWS32
|
||||
#endif
|
||||
|
||||
#define MY_INTERNAL_NAME MY_LIBNAME
|
||||
#define MY_VERSION "0"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Version-information resource
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 0,0,0,0
|
||||
PRODUCTVERSION 0,0,0,0
|
||||
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
||||
FILEFLAGS MY_FILEFLAGS_2
|
||||
FILEOS MY_FILEOS
|
||||
FILETYPE VFT_DLL
|
||||
FILESUBTYPE 0x0L // not used
|
||||
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904B0" // Lang=US English, CharSet=Unicode
|
||||
BEGIN
|
||||
VALUE "CompanyName", "Mozilla Foundation\0"
|
||||
VALUE "FileDescription", MY_FILEDESCRIPTION MY_DEBUG_STR "\0"
|
||||
VALUE "FileVersion", MY_VERSION "\0"
|
||||
VALUE "InternalName", MY_INTERNAL_NAME "\0"
|
||||
VALUE "OriginalFilename", MY_INTERNAL_NAME ".dll\0"
|
||||
VALUE "ProductName", "Network Security Services\0"
|
||||
VALUE "ProductVersion", MY_VERSION "\0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 0x409, 1200
|
||||
END
|
||||
END
|
||||
Loading…
Add table
Add a link
Reference in a new issue