Bugzilla Bug 298522: changed RSA modulus size to 1024 bits and added known

answer tests for RSA SHA1, SHA256, SHA384, and SHA512 signatures.  The
patch is written by Glen Beasley. r=wtc.
This commit is contained in:
wtchang%redhat.com 2006-04-21 17:13:50 +00:00
parent d19c8479dd
commit 37a7e6c417

View File

@ -36,7 +36,7 @@
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
/* $Id: fipstest.c,v 1.13 2005/11/07 19:05:45 wtchang%redhat.com Exp $ */
/* $Id: fipstest.c,v 1.14 2006/04/21 17:13:50 wtchang%redhat.com Exp $ */
#include "softoken.h" /* Required for RC2-ECB, RC2-CBC, RC4, DES-ECB, */
/* DES-CBC, DES3-ECB, DES3-CBC, RSA */
@ -81,22 +81,21 @@
#define FIPS_KNOWN_HASH_MESSAGE_LENGTH 64 /* 512-bits */
/* FIPS preprocessor directives for RSA. */
/* FIPS preprocessor directives for RSA. */
#define FIPS_RSA_TYPE siBuffer
#define FIPS_RSA_PUBLIC_EXPONENT_LENGTH 1 /* 8-bits */
#define FIPS_RSA_PRIVATE_VERSION_LENGTH 1 /* 8-bits */
#define FIPS_RSA_MESSAGE_LENGTH 16 /* 128-bits */
#define FIPS_RSA_COEFFICIENT_LENGTH 32 /* 256-bits */
#define FIPS_RSA_PRIME0_LENGTH 33 /* 264-bits */
#define FIPS_RSA_PRIME1_LENGTH 33 /* 264-bits */
#define FIPS_RSA_EXPONENT0_LENGTH 33 /* 264-bits */
#define FIPS_RSA_EXPONENT1_LENGTH 33 /* 264-bits */
#define FIPS_RSA_PRIVATE_EXPONENT_LENGTH 64 /* 512-bits */
#define FIPS_RSA_ENCRYPT_LENGTH 64 /* 512-bits */
#define FIPS_RSA_DECRYPT_LENGTH 64 /* 512-bits */
#define FIPS_RSA_CRYPTO_LENGTH 64 /* 512-bits */
#define FIPS_RSA_SIGNATURE_LENGTH 64 /* 512-bits */
#define FIPS_RSA_MODULUS_LENGTH 65 /* 520-bits */
#define FIPS_RSA_PUBLIC_EXPONENT_LENGTH 3 /* 24-bits */
#define FIPS_RSA_PRIVATE_VERSION_LENGTH 1 /* 8-bits */
#define FIPS_RSA_MESSAGE_LENGTH 128 /* 1024-bits */
#define FIPS_RSA_COEFFICIENT_LENGTH 64 /* 512-bits */
#define FIPS_RSA_PRIME0_LENGTH 64 /* 512-bits */
#define FIPS_RSA_PRIME1_LENGTH 64 /* 512-bits */
#define FIPS_RSA_EXPONENT0_LENGTH 64 /* 512-bits */
#define FIPS_RSA_EXPONENT1_LENGTH 64 /* 512-bits */
#define FIPS_RSA_PRIVATE_EXPONENT_LENGTH 128 /* 1024-bits */
#define FIPS_RSA_ENCRYPT_LENGTH 128 /* 1024-bits */
#define FIPS_RSA_DECRYPT_LENGTH 128 /* 1024-bits */
#define FIPS_RSA_SIGNATURE_LENGTH 128 /* 1024-bits */
#define FIPS_RSA_MODULUS_LENGTH 128 /* 1024-bits */
/* FIPS preprocessor directives for DSA. */
@ -1046,121 +1045,324 @@ sftk_fips_SHA_PowerUpSelfTest( void )
return( CKR_OK );
}
/*
* Single round RSA Signature Known Answer Test
*/
static SECStatus
sftk_fips_RSA_PowerUpSigSelfTest (HASH_HashType shaAlg,
NSSLOWKEYPublicKey *rsa_public_key,
NSSLOWKEYPrivateKey *rsa_private_key,
const unsigned char *rsa_known_msg,
const unsigned int rsa_kmsg_length,
const unsigned char *rsa_known_signature)
{
SECOidTag shaOid; /* SHA OID */
unsigned char sha[HASH_LENGTH_MAX]; /* SHA digest */
unsigned int shaLength = 0; /* length of SHA */
unsigned int rsa_bytes_signed;
unsigned char rsa_computed_signature[FIPS_RSA_SIGNATURE_LENGTH];
SECStatus rv;
if (shaAlg == HASH_AlgSHA1) {
if (SHA1_HashBuf(sha, rsa_known_msg, rsa_kmsg_length)
!= SECSuccess) {
goto loser;
}
shaLength = SHA1_LENGTH;
shaOid = SEC_OID_SHA1;
} else if (shaAlg == HASH_AlgSHA256) {
if (SHA256_HashBuf(sha, rsa_known_msg, rsa_kmsg_length)
!= SECSuccess) {
goto loser;
}
shaLength = SHA256_LENGTH;
shaOid = SEC_OID_SHA256;
} else if (shaAlg == HASH_AlgSHA384) {
if (SHA384_HashBuf(sha, rsa_known_msg, rsa_kmsg_length)
!= SECSuccess) {
goto loser;
}
shaLength = SHA384_LENGTH;
shaOid = SEC_OID_SHA384;
} else if (shaAlg == HASH_AlgSHA512) {
if (SHA512_HashBuf(sha, rsa_known_msg, rsa_kmsg_length)
!= SECSuccess) {
goto loser;
}
shaLength = SHA512_LENGTH;
shaOid = SEC_OID_SHA512;
} else {
goto loser;
}
/*************************************************/
/* RSA Single-Round Known Answer Signature Test. */
/*************************************************/
/* Perform RSA signature with the RSA private key. */
rv = RSA_HashSign( shaOid,
rsa_private_key,
rsa_computed_signature,
&rsa_bytes_signed,
FIPS_RSA_SIGNATURE_LENGTH,
sha,
shaLength);
if( ( rv != SECSuccess ) ||
( rsa_bytes_signed != FIPS_RSA_SIGNATURE_LENGTH ) ||
( PORT_Memcmp( rsa_computed_signature, rsa_known_signature,
FIPS_RSA_SIGNATURE_LENGTH ) != 0 ) ) {
goto loser;
}
/****************************************************/
/* RSA Single-Round Known Answer Verification Test. */
/****************************************************/
/* Perform RSA verification with the RSA public key. */
rv = RSA_HashCheckSign( shaOid,
rsa_public_key,
rsa_computed_signature,
rsa_bytes_signed,
sha,
shaLength);
if( rv != SECSuccess ) {
goto loser;
}
return( SECSuccess );
loser:
return( SECFailure );
}
static CK_RV
sftk_fips_RSA_PowerUpSelfTest( void )
{
/* RSA Known Modulus used in both Public/Private Key Values (520-bits). */
/* RSA Known Modulus used in both Public/Private Key Values (1024-bits). */
static const PRUint8 rsa_modulus[FIPS_RSA_MODULUS_LENGTH] = {
0x00,0xa1,0xe9,0x5e,0x66,0x88,0xe2,0xf2,
0x2b,0xe7,0x70,0x36,0x33,0xbc,0xeb,0x55,
0x55,0xf1,0x60,0x18,0x3c,0xfb,0xd2,0x79,
0xf6,0xc4,0xb8,0x09,0xe3,0x12,0xf6,0x63,
0x6d,0xc7,0x8e,0x19,0xc0,0x0e,0x10,0x78,
0xc1,0xfe,0x2a,0x41,0x74,0x2d,0xf7,0xc4,
0x69,0xa7,0x3c,0xbc,0x8a,0xc8,0x31,0x2b,
0x4f,0x60,0xf0,0xf1,0xec,0x5a,0x29,0xec,
0x6b};
0xd5, 0x84, 0x95, 0x07, 0xf4, 0xd0, 0x1f, 0x82,
0xf3, 0x79, 0xf4, 0x99, 0x48, 0x10, 0xe1, 0x71,
0xa5, 0x62, 0x22, 0xa3, 0x4b, 0x00, 0xe3, 0x5b,
0x3a, 0xcc, 0x10, 0x83, 0xe0, 0xaf, 0x61, 0x13,
0x54, 0x6a, 0xa2, 0x6a, 0x2c, 0x5e, 0xb3, 0xcc,
0xa3, 0x71, 0x9a, 0xb2, 0x3e, 0x78, 0xec, 0xb5,
0x0e, 0x6e, 0x31, 0x3b, 0x77, 0x1f, 0x6e, 0x94,
0x41, 0x60, 0xd5, 0x6e, 0xd9, 0xc6, 0xf9, 0x29,
0xc3, 0x40, 0x36, 0x25, 0xdb, 0xea, 0x0b, 0x07,
0xae, 0x76, 0xfd, 0x99, 0x29, 0xf4, 0x22, 0xc1,
0x1a, 0x8f, 0x05, 0xfe, 0x98, 0x09, 0x07, 0x05,
0xc2, 0x0f, 0x0b, 0x11, 0x83, 0x39, 0xca, 0xc7,
0x43, 0x63, 0xff, 0x33, 0x80, 0xe7, 0xc3, 0x78,
0xae, 0xf1, 0x73, 0x52, 0x98, 0x1d, 0xde, 0x5c,
0x53, 0x6e, 0x01, 0x73, 0x0d, 0x12, 0x7e, 0x77,
0x03, 0xf1, 0xef, 0x1b, 0xc8, 0xa8, 0x0f, 0x97};
/* RSA Known Public Key Values (8-bits). */
static const PRUint8 rsa_public_exponent[] = { 0x03 };
/* RSA Known Private Key Values (version is 8-bits), */
/* (private exponent is 512-bits), */
/* (private prime0 is 264-bits), */
/* (private prime1 is 264-bits), */
/* (private prime exponent0 is 264-bits), */
/* (private prime exponent1 is 264-bits), */
/* and (private coefficient is 256-bits). */
/* RSA Known Public Key Values (24-bits). */
static const PRUint8 rsa_public_exponent[FIPS_RSA_PUBLIC_EXPONENT_LENGTH]
= { 0x01, 0x00, 0x01 };
/* RSA Known Private Key Values (version is 8-bits), */
/* (private exponent is 1024-bits), */
/* (private prime0 is 512-bits), */
/* (private prime1 is 512-bits), */
/* (private prime exponent0 is 512-bits), */
/* (private prime exponent1 is 512-bits), */
/* and (private coefficient is 512-bits). */
static const PRUint8 rsa_version[] = { 0x00 };
static const PRUint8 rsa_private_exponent[FIPS_RSA_PRIVATE_EXPONENT_LENGTH] = {
0x6b,0xf0,0xe9,0x99,0xb0,0x97,0x4c,0x1d,
0x44,0xf5,0x79,0x77,0xd3,0x47,0x8e,0x39,
0x4b,0x95,0x65,0x7d,0xfd,0x36,0xfb,0xf9,
0xd8,0x7a,0xb1,0x42,0x0c,0xa4,0x42,0x48,
0x20,0x1c,0x6b,0x7d,0x5d,0xa3,0x58,0xd6,
0x95,0xd6,0x41,0xe3,0xd6,0x73,0xad,0xdb,
0x3b,0x89,0x00,0x8a,0xcd,0x1d,0xb9,0x06,
0xac,0xac,0x0e,0x02,0x72,0x1c,0xf8,0xab };
static const PRUint8 rsa_private_exponent[FIPS_RSA_PRIVATE_EXPONENT_LENGTH]
= { 0x85, 0x27, 0x47, 0x61, 0x4c, 0xd4, 0xb5, 0xb2,
0x0e, 0x70, 0x91, 0x8f, 0x3d, 0x97, 0xf9, 0x5f,
0xcc, 0x09, 0x65, 0x1c, 0x7c, 0x5b, 0xb3, 0x6d,
0x63, 0x3f, 0x7b, 0x55, 0x22, 0xbb, 0x7c, 0x48,
0x77, 0xae, 0x80, 0x56, 0xc2, 0x10, 0xd5, 0x03,
0xdb, 0x31, 0xaf, 0x8d, 0x54, 0xd4, 0x48, 0x99,
0xa8, 0xc4, 0x23, 0x43, 0xb8, 0x48, 0x0b, 0xc7,
0xbc, 0xf5, 0xcc, 0x64, 0x72, 0xbf, 0x59, 0x06,
0x04, 0x1c, 0x32, 0xf5, 0x14, 0x2e, 0x6e, 0xe2,
0x0f, 0x5c, 0xde, 0x36, 0x3c, 0x6e, 0x7c, 0x4d,
0xcc, 0xd3, 0x00, 0x6e, 0xe5, 0x45, 0x46, 0xef,
0x4d, 0x25, 0x46, 0x6d, 0x7f, 0xed, 0xbb, 0x4f,
0x4d, 0x9f, 0xda, 0x87, 0x47, 0x8f, 0x74, 0x44,
0xb7, 0xbe, 0x9d, 0xf5, 0xdd, 0xd2, 0x4c, 0xa5,
0xab, 0x74, 0xe5, 0x29, 0xa1, 0xd2, 0x45, 0x3b,
0x33, 0xde, 0xd5, 0xae, 0xf7, 0x03, 0x10, 0x21};
static const PRUint8 rsa_prime0[FIPS_RSA_PRIME0_LENGTH] = {
0x00,0xd2,0x2c,0x9d,0xef,0x7c,0x8f,0x58,
0x93,0x19,0xa1,0x77,0x0e,0x38,0x3e,0x85,
0xb4,0xaf,0xcc,0x99,0xa5,0x43,0xbf,0x97,
0xdc,0x46,0xb8,0x3f,0x6e,0x85,0x18,0x00,
0x81};
0xf9, 0x74, 0x8f, 0x16, 0x02, 0x6b, 0xa0, 0xee,
0x7f, 0x28, 0x97, 0x91, 0xdc, 0xec, 0xc0, 0x7c,
0x49, 0xc2, 0x85, 0x76, 0xee, 0x66, 0x74, 0x2d,
0x1a, 0xb8, 0xf7, 0x2f, 0x11, 0x5b, 0x36, 0xd8,
0x46, 0x33, 0x3b, 0xd8, 0xf3, 0x2d, 0xa1, 0x03,
0x83, 0x2b, 0xec, 0x35, 0x43, 0x32, 0xff, 0xdd,
0x81, 0x7c, 0xfd, 0x65, 0x13, 0x04, 0x7c, 0xfc,
0x03, 0x97, 0xf0, 0xd5, 0x62, 0xdc, 0x0d, 0xbf};
static const PRUint8 rsa_prime1[FIPS_RSA_PRIME1_LENGTH] = {
0x00,0xc5,0x36,0xda,0x94,0x85,0x0c,0x1a,
0xed,0x03,0xc7,0x67,0x90,0x34,0x0b,0xb9,
0xec,0x1e,0x22,0xa2,0x15,0x50,0xc4,0xfd,
0xe9,0x17,0x36,0x9d,0x7a,0x29,0xe6,0x76,
0xeb};
0xdb, 0x1e, 0xa7, 0x3d, 0xe7, 0xfa, 0x8b, 0x04,
0x83, 0x48, 0xf3, 0xa5, 0x31, 0x9d, 0x35, 0x5e,
0x4d, 0x54, 0x77, 0xcc, 0x84, 0x09, 0xf3, 0x11,
0x0d, 0x54, 0xed, 0x85, 0x39, 0xa9, 0xca, 0xa8,
0xea, 0xae, 0x19, 0x9c, 0x75, 0xdb, 0x88, 0xb8,
0x04, 0x8d, 0x54, 0xc6, 0xa4, 0x80, 0xf8, 0x93,
0xf0, 0xdb, 0x19, 0xef, 0xd7, 0x87, 0x8a, 0x8f,
0x5a, 0x09, 0x2e, 0x54, 0xf3, 0x45, 0x24, 0x29};
static const PRUint8 rsa_exponent0[FIPS_RSA_EXPONENT0_LENGTH] = {
0x00,0x8c,0x1d,0xbe,0x9f,0xa8,
0x5f,0x90,0x62,0x11,0x16,0x4f,
0x5e,0xd0,0x29,0xae,0x78,0x75,
0x33,0x11,0x18,0xd7,0xd5,0x0f,
0xe8,0x2f,0x25,0x7f,0x9f,0x03,
0x65,0x55,0xab};
0x6a, 0xd1, 0x25, 0x80, 0x18, 0x33, 0x3c, 0x2b,
0x44, 0x19, 0xfe, 0xa5, 0x40, 0x03, 0xc4, 0xfc,
0xb3, 0x9c, 0xef, 0x07, 0x99, 0x58, 0x17, 0xc1,
0x44, 0xa3, 0x15, 0x7d, 0x7b, 0x22, 0x22, 0xdf,
0x03, 0x58, 0x66, 0xf5, 0x24, 0x54, 0x52, 0x91,
0x2d, 0x76, 0xfe, 0x63, 0x64, 0x4e, 0x0f, 0x50,
0x2b, 0x65, 0x79, 0x1f, 0xf1, 0xbf, 0xc7, 0x41,
0x26, 0xcc, 0xc6, 0x1c, 0xa9, 0x83, 0x6f, 0x03};
static const PRUint8 rsa_exponent1[FIPS_RSA_EXPONENT1_LENGTH] = {
0x00,0x83,0x79,0xe7,0x0d,0xae,
0x08,0x11,0xf3,0x57,0xda,0x45,
0x0a,0xcd,0x5d,0x26,0x9d,0x69,
0x6c,0x6c,0x0e,0x35,0xd8,0xa9,
0x46,0x0f,0x79,0xbe,0x51,0x71,
0x44,0x4f,0x47};
0x12, 0x84, 0x1a, 0x99, 0xce, 0x9a, 0x8b, 0x58,
0xcc, 0x47, 0x43, 0xdf, 0x77, 0xbb, 0xd3, 0x20,
0xae, 0xe4, 0x2e, 0x63, 0x67, 0xdc, 0xf7, 0x5f,
0x3f, 0x83, 0x27, 0xb7, 0x14, 0x52, 0x56, 0xbf,
0xc3, 0x65, 0x06, 0xe1, 0x03, 0xcc, 0x93, 0x57,
0x09, 0x7b, 0x6f, 0xe8, 0x81, 0x4a, 0x2c, 0xb7,
0x43, 0xa9, 0x20, 0x1d, 0xf6, 0x56, 0x8b, 0xcc,
0xe5, 0x4c, 0xd5, 0x4f, 0x74, 0x67, 0x29, 0x51};
static const PRUint8 rsa_coefficient[FIPS_RSA_COEFFICIENT_LENGTH] = {
0x54,0x8d,0xb8,0xdc,0x8b,0xde,0xbb,
0x08,0xc9,0x67,0xb7,0xa9,0x5f,0xa5,
0xc4,0x5e,0x67,0xaa,0xfe,0x1a,0x08,
0xeb,0x48,0x43,0xcb,0xb0,0xb9,0x38,
0x3a,0x31,0x39,0xde};
0x23, 0xab, 0xf4, 0x03, 0x2f, 0x29, 0x95, 0x74,
0xac, 0x1a, 0x33, 0x96, 0x62, 0xed, 0xf7, 0xf6,
0xae, 0x07, 0x2a, 0x2e, 0xe8, 0xab, 0xfb, 0x1e,
0xb9, 0xb2, 0x88, 0x1e, 0x85, 0x05, 0x42, 0x64,
0x03, 0xb2, 0x8b, 0xc1, 0x81, 0x75, 0xd7, 0xba,
0xaa, 0xd4, 0x31, 0x3c, 0x8a, 0x96, 0x23, 0x9d,
0x3f, 0x06, 0x3e, 0x44, 0xa9, 0x62, 0x2f, 0x61,
0x5a, 0x51, 0x82, 0x2c, 0x04, 0x85, 0x73, 0xd1};
/* RSA Known Plaintext Message (1024-bits). */
static const PRUint8 rsa_known_plaintext_msg[FIPS_RSA_MESSAGE_LENGTH] = {
"Known plaintext message utilized"
"for RSA Encryption & Decryption"
"block, SHA1, SHA256, SHA384 and"
"SHA512 RSA Signature KAT tests."};
/* RSA Known Plaintext (512-bits). */
static const PRUint8 rsa_known_plaintext[] = {
"Known plaintext utilized for RSA"
" Encryption and Decryption test." };
/* RSA Known Ciphertext (512-bits). */
/* RSA Known Ciphertext (1024-bits). */
static const PRUint8 rsa_known_ciphertext[] = {
0x12,0x80,0x3a,0x53,0xee,0x93,0x81,0xa5,
0xf7,0x40,0xc5,0xb1,0xef,0xd9,0x27,0xaf,
0xef,0x4b,0x87,0x44,0x00,0xd0,0xda,0xcf,
0x10,0x57,0x4c,0xd5,0xc3,0xed,0x84,0xdc,
0x74,0x03,0x19,0x69,0x2c,0xd6,0x54,0x3e,
0xd2,0xe3,0x90,0xb6,0x67,0x91,0x2f,0x1f,
0x54,0x13,0x99,0x00,0x0b,0xfd,0x52,0x7f,
0xd8,0xc6,0xdb,0x8a,0xfe,0x06,0xf3,0xb1};
0x1e, 0x7e, 0x12, 0xbb, 0x15, 0x62, 0xd0, 0x23,
0x53, 0x4c, 0x51, 0x97, 0x77, 0x06, 0xa0, 0xbb,
0x26, 0x99, 0x9a, 0x8f, 0x39, 0xad, 0x88, 0x5c,
0xc4, 0xce, 0x33, 0x40, 0x94, 0x92, 0xb4, 0x0e,
0xab, 0x71, 0xa9, 0x5d, 0x9a, 0x37, 0xe3, 0x9a,
0x24, 0x95, 0x13, 0xea, 0x0f, 0xbb, 0xf7, 0xff,
0xdf, 0x31, 0x33, 0x23, 0x1d, 0xce, 0x26, 0x9e,
0xd1, 0xde, 0x98, 0x40, 0xde, 0x57, 0x86, 0x12,
0xf1, 0xe6, 0x5a, 0x3f, 0x08, 0x02, 0x81, 0x85,
0xe0, 0xd9, 0xad, 0x3c, 0x8c, 0x71, 0xf8, 0xcf,
0x0a, 0x98, 0xc5, 0x08, 0xdc, 0xc4, 0xca, 0x8c,
0x23, 0x1b, 0x4d, 0x9b, 0xb5, 0x13, 0x44, 0xe1,
0x5f, 0xf9, 0x30, 0x80, 0x25, 0xe0, 0x1e, 0x94,
0xa3, 0x0c, 0xdc, 0x82, 0x2e, 0xfb, 0x30, 0xbe,
0x89, 0xba, 0x76, 0xb6, 0x23, 0xf7, 0xda, 0x7c,
0xca, 0xe6, 0x02, 0xbd, 0x92, 0xce, 0x64, 0xfc};
/* RSA Known Message (128-bits). */
static const PRUint8 rsa_known_message[] = { "Netscape Forever" };
/* RSA Known Signed Hash (1024-bits). */
static const PRUint8 rsa_known_sha1_signature[] = {
0xd2, 0xa4, 0xe0, 0x2b, 0xc7, 0x03, 0x7f, 0xc6,
0x06, 0x9e, 0xa2, 0x82, 0x19, 0xe9, 0x2b, 0xaf,
0xe3, 0x48, 0x88, 0xc1, 0xf3, 0xb5, 0x0d, 0xe4,
0x52, 0x9e, 0xad, 0xd5, 0x58, 0xb5, 0x9f, 0xe8,
0x40, 0xe9, 0xb7, 0x2e, 0xc6, 0x71, 0x58, 0x56,
0x04, 0xac, 0xb0, 0xf3, 0x3a, 0x42, 0x38, 0x08,
0xc4, 0x43, 0x39, 0xba, 0x19, 0xce, 0xb1, 0x99,
0xf1, 0x8d, 0x89, 0xd8, 0x50, 0x07, 0x14, 0x3d,
0xcf, 0xd0, 0xb6, 0x79, 0xde, 0x9c, 0x89, 0x32,
0xb0, 0x73, 0x3f, 0xed, 0x03, 0x0b, 0xdf, 0x6d,
0x7e, 0xc9, 0x1c, 0x39, 0xe8, 0x2b, 0x16, 0x09,
0xbb, 0x5f, 0x99, 0x2f, 0xeb, 0xf3, 0x37, 0x73,
0x0d, 0x0e, 0xcc, 0x95, 0xad, 0x90, 0x80, 0x03,
0x1d, 0x80, 0x55, 0x37, 0xa1, 0x2a, 0x71, 0x76,
0x23, 0x87, 0x8c, 0x9b, 0x41, 0x07, 0xc6, 0x3d,
0xc6, 0xa3, 0x7d, 0x1b, 0xff, 0x4e, 0x11, 0x19};
/* RSA Known Signed Hash (512-bits). */
static const PRUint8 rsa_known_signature[] = {
0x27,0x23,0xa6,0x71,0x57,0xc8,0x70,0x5f,
0x70,0x0e,0x06,0x7b,0x96,0x6a,0xaa,0x41,
0x6e,0xab,0x67,0x4b,0x5f,0x76,0xc4,0x53,
0x23,0xd7,0x57,0x7a,0x3a,0xbc,0x4c,0x27,
0x65,0xca,0xde,0x9f,0xd3,0x1d,0xa4,0x5a,
0xf9,0x8f,0xb2,0x05,0xa3,0x86,0xf9,0x66,
0x55,0x4c,0x68,0x50,0x66,0xa4,0xe9,0x17,
0x45,0x11,0xb8,0x1a,0xfc,0xbc,0x79,0x3b};
/* RSA Known Signed Hash (1024-bits). */
static const PRUint8 rsa_known_sha256_signature[] = {
0x27, 0x35, 0xdd, 0xc4, 0xf8, 0xe2, 0x0b, 0xa3,
0xef, 0x63, 0x57, 0x3b, 0xe1, 0x58, 0x9a, 0xbc,
0x20, 0x9c, 0x25, 0x12, 0x01, 0xbf, 0xbb, 0x29,
0x80, 0x1a, 0xb1, 0x37, 0x9c, 0xcd, 0x67, 0xc7,
0x0d, 0xf8, 0x64, 0x10, 0x9f, 0xe2, 0xa1, 0x9b,
0x21, 0x90, 0xcc, 0xda, 0x8b, 0x76, 0x5e, 0x79,
0x00, 0x9d, 0x58, 0x8b, 0x8a, 0xb3, 0xc3, 0xb5,
0xf1, 0x54, 0xc5, 0x8c, 0x72, 0xba, 0xde, 0x51,
0x3c, 0x6b, 0x94, 0xd6, 0xf3, 0x1b, 0xa2, 0x53,
0xe6, 0x1a, 0x46, 0x1d, 0x7f, 0x14, 0x86, 0xcc,
0xa6, 0x30, 0x92, 0x96, 0xc0, 0x96, 0x24, 0xf0,
0x42, 0x53, 0x4c, 0xdd, 0x27, 0xdf, 0x1d, 0x2e,
0x8b, 0x83, 0xbe, 0xed, 0x85, 0x1d, 0x50, 0x46,
0xa3, 0x7d, 0x20, 0xea, 0x3e, 0x91, 0xfb, 0xf6,
0x86, 0x51, 0xfd, 0x8c, 0xe5, 0x31, 0xe6, 0x7e,
0x60, 0x08, 0x0e, 0xec, 0xa6, 0xea, 0x24, 0x8d};
/* RSA Known Signed Hash (1024-bits). */
static const PRUint8 rsa_known_sha384_signature[] = {
0x0b, 0x03, 0x94, 0x4f, 0x94, 0x78, 0x9b, 0x96,
0x76, 0xeb, 0x72, 0x58, 0xe1, 0xc5, 0xc7, 0x5f,
0x85, 0x01, 0xa8, 0xc4, 0xf6, 0x1a, 0xb5, 0x2c,
0xd1, 0xd8, 0x87, 0xde, 0x3a, 0x9c, 0x9f, 0x57,
0x81, 0x2a, 0x1e, 0x23, 0x07, 0x70, 0xb0, 0xf9,
0x28, 0x3d, 0xfa, 0xe5, 0x2e, 0x1b, 0x9a, 0x72,
0xc3, 0x74, 0xb3, 0x42, 0x1c, 0x9a, 0x13, 0xdc,
0xc9, 0xd6, 0xd5, 0x88, 0xc9, 0x9c, 0x46, 0xf1,
0x0c, 0xa6, 0xf7, 0xd8, 0x06, 0xa3, 0x1b, 0xdf,
0x55, 0xb3, 0x1b, 0x7b, 0x58, 0x1d, 0xff, 0x19,
0xc7, 0xe0, 0xdd, 0x59, 0xac, 0x2f, 0x78, 0x71,
0xe7, 0xe0, 0x17, 0xa3, 0x1c, 0x5c, 0x92, 0xef,
0xb6, 0x75, 0xed, 0xbe, 0x18, 0x39, 0x6b, 0xd7,
0xc9, 0x08, 0x62, 0x55, 0x62, 0xac, 0x5d, 0xa1,
0x9b, 0xd5, 0xb8, 0x98, 0x15, 0xc0, 0xf5, 0x41,
0x85, 0x44, 0x96, 0xca, 0x10, 0xdc, 0x57, 0x21};
static const RSAPublicKey bl_public_key = { NULL,
{ FIPS_RSA_TYPE, (unsigned char *)rsa_modulus, FIPS_RSA_MODULUS_LENGTH },
{ FIPS_RSA_TYPE, (unsigned char *)rsa_public_exponent, FIPS_RSA_PUBLIC_EXPONENT_LENGTH }
/* RSA Known Signed Hash (1024-bits). */
static const PRUint8 rsa_known_sha512_signature[] = {
0xa5, 0xd0, 0x80, 0x04, 0x22, 0xfc, 0x80, 0x73,
0x7d, 0x46, 0xc8, 0x7b, 0xac, 0x44, 0x7b, 0xe6,
0x07, 0xe5, 0x61, 0x4c, 0x33, 0x7f, 0x6f, 0x46,
0x7c, 0x30, 0xe3, 0x75, 0x59, 0x4b, 0x42, 0xf3,
0x9f, 0x35, 0x3c, 0x10, 0x56, 0xdb, 0xd2, 0x69,
0x43, 0xcb, 0x77, 0xe9, 0x7d, 0xcd, 0x07, 0x43,
0xc5, 0xd4, 0x0c, 0x9d, 0xf5, 0x92, 0xbd, 0x0e,
0x3b, 0xb7, 0x68, 0x88, 0x84, 0xca, 0xae, 0x0d,
0xab, 0x71, 0x10, 0xad, 0xab, 0x27, 0xe4, 0xa3,
0x24, 0x41, 0xeb, 0x1c, 0xa6, 0x5f, 0xf1, 0x85,
0xd0, 0xf6, 0x22, 0x74, 0x3d, 0x81, 0xbe, 0xdd,
0x1b, 0x2a, 0x4c, 0xd1, 0x6c, 0xb5, 0x6d, 0x7a,
0xbb, 0x99, 0x69, 0x01, 0xa6, 0xc0, 0x98, 0xfa,
0x97, 0xa3, 0xd1, 0xb0, 0xdf, 0x09, 0xe3, 0x3d,
0x88, 0xee, 0x90, 0xf3, 0x10, 0x41, 0x0f, 0x06,
0x31, 0xe9, 0x60, 0x2d, 0xbf, 0x63, 0x7b, 0xf8};
static const RSAPublicKey bl_public_key = { NULL,
{ FIPS_RSA_TYPE, (unsigned char *)rsa_modulus,
FIPS_RSA_MODULUS_LENGTH },
{ FIPS_RSA_TYPE, (unsigned char *)rsa_public_exponent,
FIPS_RSA_PUBLIC_EXPONENT_LENGTH }
};
static const RSAPrivateKey bl_private_key = { NULL,
{ FIPS_RSA_TYPE, (unsigned char *)rsa_version, FIPS_RSA_PRIVATE_VERSION_LENGTH },
{ FIPS_RSA_TYPE, (unsigned char *)rsa_modulus, FIPS_RSA_MODULUS_LENGTH },
{ FIPS_RSA_TYPE, (unsigned char *)rsa_public_exponent, FIPS_RSA_PUBLIC_EXPONENT_LENGTH },
{ FIPS_RSA_TYPE, (unsigned char *)rsa_private_exponent, FIPS_RSA_PRIVATE_EXPONENT_LENGTH },
{ FIPS_RSA_TYPE, (unsigned char *)rsa_prime0, FIPS_RSA_PRIME0_LENGTH },
{ FIPS_RSA_TYPE, (unsigned char *)rsa_prime1, FIPS_RSA_PRIME1_LENGTH },
{ FIPS_RSA_TYPE, (unsigned char *)rsa_exponent0, FIPS_RSA_EXPONENT0_LENGTH },
{ FIPS_RSA_TYPE, (unsigned char *)rsa_exponent1, FIPS_RSA_EXPONENT1_LENGTH },
{ FIPS_RSA_TYPE, (unsigned char *)rsa_coefficient, FIPS_RSA_COEFFICIENT_LENGTH }
{ FIPS_RSA_TYPE, (unsigned char *)rsa_version,
FIPS_RSA_PRIVATE_VERSION_LENGTH },
{ FIPS_RSA_TYPE, (unsigned char *)rsa_modulus,
FIPS_RSA_MODULUS_LENGTH },
{ FIPS_RSA_TYPE, (unsigned char *)rsa_public_exponent,
FIPS_RSA_PUBLIC_EXPONENT_LENGTH },
{ FIPS_RSA_TYPE, (unsigned char *)rsa_private_exponent,
FIPS_RSA_PRIVATE_EXPONENT_LENGTH },
{ FIPS_RSA_TYPE, (unsigned char *)rsa_prime0,
FIPS_RSA_PRIME0_LENGTH },
{ FIPS_RSA_TYPE, (unsigned char *)rsa_prime1,
FIPS_RSA_PRIME1_LENGTH },
{ FIPS_RSA_TYPE, (unsigned char *)rsa_exponent0,
FIPS_RSA_EXPONENT0_LENGTH },
{ FIPS_RSA_TYPE, (unsigned char *)rsa_exponent1,
FIPS_RSA_EXPONENT1_LENGTH },
{ FIPS_RSA_TYPE, (unsigned char *)rsa_coefficient,
FIPS_RSA_COEFFICIENT_LENGTH }
};
/* RSA variables. */
@ -1170,14 +1372,12 @@ sftk_fips_RSA_PowerUpSelfTest( void )
#endif
NSSLOWKEYPublicKey * rsa_public_key;
NSSLOWKEYPrivateKey * rsa_private_key;
unsigned int rsa_bytes_signed;
SECStatus rsa_status;
NSSLOWKEYPublicKey low_public_key = { NULL, NSSLOWKEYRSAKey, };
NSSLOWKEYPrivateKey low_private_key = { NULL, NSSLOWKEYRSAKey, };
PRUint8 rsa_computed_ciphertext[FIPS_RSA_ENCRYPT_LENGTH];
PRUint8 rsa_computed_plaintext[FIPS_RSA_DECRYPT_LENGTH];
PRUint8 rsa_computed_signature[FIPS_RSA_SIGNATURE_LENGTH];
/****************************************/
/* Compose RSA Public/Private Key Pair. */
@ -1216,8 +1416,9 @@ sftk_fips_RSA_PowerUpSelfTest( void )
/**************************************************/
/* Perform RSA Public Key Encryption. */
rsa_status = RSA_PublicKeyOp(&rsa_public_key->u.rsa,
rsa_computed_ciphertext, rsa_known_plaintext);
rsa_status = RSA_PublicKeyOp(&rsa_public_key->u.rsa,
rsa_computed_ciphertext,
rsa_known_plaintext_msg);
if( ( rsa_status != SECSuccess ) ||
( PORT_Memcmp( rsa_computed_ciphertext, rsa_known_ciphertext,
@ -1229,44 +1430,40 @@ sftk_fips_RSA_PowerUpSelfTest( void )
/**************************************************/
/* Perform RSA Private Key Decryption. */
rsa_status = RSA_PrivateKeyOp(&rsa_private_key->u.rsa,
rsa_computed_plaintext, rsa_known_ciphertext);
rsa_status = RSA_PrivateKeyOp(&rsa_private_key->u.rsa,
rsa_computed_plaintext,
rsa_known_ciphertext);
if( ( rsa_status != SECSuccess ) ||
( PORT_Memcmp( rsa_computed_plaintext, rsa_known_plaintext,
( PORT_Memcmp( rsa_computed_plaintext, rsa_known_plaintext_msg,
FIPS_RSA_DECRYPT_LENGTH ) != 0 ) )
goto rsa_loser;
/*************************************************/
/* RSA Single-Round Known Answer Signature Test. */
/*************************************************/
/* Perform RSA signature with the RSA private key. */
rsa_status = RSA_Sign( rsa_private_key, rsa_computed_signature,
&rsa_bytes_signed,
FIPS_RSA_SIGNATURE_LENGTH,
(unsigned char *)rsa_known_message,
FIPS_RSA_MESSAGE_LENGTH );
if( ( rsa_status != SECSuccess ) ||
( rsa_bytes_signed != FIPS_RSA_SIGNATURE_LENGTH ) ||
( PORT_Memcmp( rsa_computed_signature, rsa_known_signature,
FIPS_RSA_SIGNATURE_LENGTH ) != 0 ) )
rsa_status = sftk_fips_RSA_PowerUpSigSelfTest (HASH_AlgSHA1,
rsa_public_key, rsa_private_key,
rsa_known_plaintext_msg, FIPS_RSA_MESSAGE_LENGTH,
rsa_known_sha1_signature);
if( rsa_status != SECSuccess )
goto rsa_loser;
rsa_status = sftk_fips_RSA_PowerUpSigSelfTest (HASH_AlgSHA256,
rsa_public_key, rsa_private_key,
rsa_known_plaintext_msg, FIPS_RSA_MESSAGE_LENGTH,
rsa_known_sha256_signature);
if( rsa_status != SECSuccess )
goto rsa_loser;
/****************************************************/
/* RSA Single-Round Known Answer Verification Test. */
/****************************************************/
/* Perform RSA verification with the RSA public key. */
rsa_status = RSA_CheckSign( rsa_public_key,
rsa_computed_signature,
FIPS_RSA_SIGNATURE_LENGTH,
(unsigned char *)rsa_known_message,
FIPS_RSA_MESSAGE_LENGTH );
rsa_status = sftk_fips_RSA_PowerUpSigSelfTest (HASH_AlgSHA384,
rsa_public_key, rsa_private_key,
rsa_known_plaintext_msg, FIPS_RSA_MESSAGE_LENGTH,
rsa_known_sha384_signature);
if( rsa_status != SECSuccess )
goto rsa_loser;
rsa_status = sftk_fips_RSA_PowerUpSigSelfTest (HASH_AlgSHA512,
rsa_public_key, rsa_private_key,
rsa_known_plaintext_msg, FIPS_RSA_MESSAGE_LENGTH,
rsa_known_sha512_signature);
if( rsa_status != SECSuccess )
goto rsa_loser;
@ -1276,7 +1473,6 @@ sftk_fips_RSA_PowerUpSelfTest( void )
return( CKR_OK );
rsa_loser:
nsslowkey_DestroyPublicKey( rsa_public_key );