Add RC4-MD5 and AESNI-SHA1 "stitched" implementations.
This commit is contained in:
@@ -62,9 +62,9 @@
|
||||
* [including the GNU Public Licence.]
|
||||
*/
|
||||
|
||||
#define NUM_NID 915
|
||||
#define NUM_SN 908
|
||||
#define NUM_LN 908
|
||||
#define NUM_NID 919
|
||||
#define NUM_SN 912
|
||||
#define NUM_LN 912
|
||||
#define NUM_OBJ 856
|
||||
|
||||
static const unsigned char lvalues[5971]={
|
||||
@@ -2397,11 +2397,19 @@ static const ASN1_OBJECT nid_objs[NUM_NID]={
|
||||
{"RSASSA-PSS","rsassaPss",NID_rsassaPss,9,&(lvalues[5961]),0},
|
||||
{"AES-128-XTS","aes-128-xts",NID_aes_128_xts,0,NULL,0},
|
||||
{"AES-256-XTS","aes-256-xts",NID_aes_256_xts,0,NULL,0},
|
||||
{"RC4-HMAC-MD5","rc4-hmac-md5",NID_rc4_hmac_md5,0,NULL,0},
|
||||
{"AES-128-CBC-HMAC-SHA1","aes-128-cbc-hmac-sha1",
|
||||
NID_aes_128_cbc_hmac_sha1,0,NULL,0},
|
||||
{"AES-192-CBC-HMAC-SHA1","aes-192-cbc-hmac-sha1",
|
||||
NID_aes_192_cbc_hmac_sha1,0,NULL,0},
|
||||
{"AES-256-CBC-HMAC-SHA1","aes-256-cbc-hmac-sha1",
|
||||
NID_aes_256_cbc_hmac_sha1,0,NULL,0},
|
||||
};
|
||||
|
||||
static const unsigned int sn_objs[NUM_SN]={
|
||||
364, /* "AD_DVCS" */
|
||||
419, /* "AES-128-CBC" */
|
||||
916, /* "AES-128-CBC-HMAC-SHA1" */
|
||||
421, /* "AES-128-CFB" */
|
||||
650, /* "AES-128-CFB1" */
|
||||
653, /* "AES-128-CFB8" */
|
||||
@@ -2410,6 +2418,7 @@ static const unsigned int sn_objs[NUM_SN]={
|
||||
420, /* "AES-128-OFB" */
|
||||
913, /* "AES-128-XTS" */
|
||||
423, /* "AES-192-CBC" */
|
||||
917, /* "AES-192-CBC-HMAC-SHA1" */
|
||||
425, /* "AES-192-CFB" */
|
||||
651, /* "AES-192-CFB1" */
|
||||
654, /* "AES-192-CFB8" */
|
||||
@@ -2417,6 +2426,7 @@ static const unsigned int sn_objs[NUM_SN]={
|
||||
422, /* "AES-192-ECB" */
|
||||
424, /* "AES-192-OFB" */
|
||||
427, /* "AES-256-CBC" */
|
||||
918, /* "AES-256-CBC-HMAC-SHA1" */
|
||||
429, /* "AES-256-CFB" */
|
||||
652, /* "AES-256-CFB1" */
|
||||
655, /* "AES-256-CFB8" */
|
||||
@@ -2540,6 +2550,7 @@ static const unsigned int sn_objs[NUM_SN]={
|
||||
40, /* "RC2-OFB" */
|
||||
5, /* "RC4" */
|
||||
97, /* "RC4-40" */
|
||||
915, /* "RC4-HMAC-MD5" */
|
||||
120, /* "RC5-CBC" */
|
||||
122, /* "RC5-CFB" */
|
||||
121, /* "RC5-ECB" */
|
||||
@@ -3455,6 +3466,7 @@ static const unsigned int ln_objs[NUM_LN]={
|
||||
364, /* "ad dvcs" */
|
||||
606, /* "additional verification" */
|
||||
419, /* "aes-128-cbc" */
|
||||
916, /* "aes-128-cbc-hmac-sha1" */
|
||||
896, /* "aes-128-ccm" */
|
||||
421, /* "aes-128-cfb" */
|
||||
650, /* "aes-128-cfb1" */
|
||||
@@ -3465,6 +3477,7 @@ static const unsigned int ln_objs[NUM_LN]={
|
||||
420, /* "aes-128-ofb" */
|
||||
913, /* "aes-128-xts" */
|
||||
423, /* "aes-192-cbc" */
|
||||
917, /* "aes-192-cbc-hmac-sha1" */
|
||||
899, /* "aes-192-ccm" */
|
||||
425, /* "aes-192-cfb" */
|
||||
651, /* "aes-192-cfb1" */
|
||||
@@ -3474,6 +3487,7 @@ static const unsigned int ln_objs[NUM_LN]={
|
||||
898, /* "aes-192-gcm" */
|
||||
424, /* "aes-192-ofb" */
|
||||
427, /* "aes-256-cbc" */
|
||||
918, /* "aes-256-cbc-hmac-sha1" */
|
||||
902, /* "aes-256-ccm" */
|
||||
429, /* "aes-256-cfb" */
|
||||
652, /* "aes-256-cfb1" */
|
||||
@@ -3978,6 +3992,7 @@ static const unsigned int ln_objs[NUM_LN]={
|
||||
40, /* "rc2-ofb" */
|
||||
5, /* "rc4" */
|
||||
97, /* "rc4-40" */
|
||||
915, /* "rc4-hmac-md5" */
|
||||
120, /* "rc5-cbc" */
|
||||
122, /* "rc5-cfb" */
|
||||
121, /* "rc5-ecb" */
|
||||
|
Reference in New Issue
Block a user