Commit e56b8fa8 authored by Adrian Bunk's avatar Adrian Bunk Committed by David S. Miller

[CRYPTO]: Make some code static

This patch below makes some needlessly global code
static.
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f973e420
...@@ -48,7 +48,7 @@ static inline u64 RORu64(u64 x, u64 y) ...@@ -48,7 +48,7 @@ static inline u64 RORu64(u64 x, u64 y)
return (x >> y) | (x << (64 - y)); return (x >> y) | (x << (64 - y));
} }
const u64 sha512_K[80] = { static const u64 sha512_K[80] = {
0x428a2f98d728ae22ULL, 0x7137449123ef65cdULL, 0xb5c0fbcfec4d3b2fULL, 0x428a2f98d728ae22ULL, 0x7137449123ef65cdULL, 0xb5c0fbcfec4d3b2fULL,
0xe9b5dba58189dbbcULL, 0x3956c25bf348b538ULL, 0x59f111f1b605d019ULL, 0xe9b5dba58189dbbcULL, 0x3956c25bf348b538ULL, 0x59f111f1b605d019ULL,
0x923f82a4af194f9bULL, 0xab1c5ed5da6d8118ULL, 0xd807aa98a3030242ULL, 0x923f82a4af194f9bULL, 0xab1c5ed5da6d8118ULL, 0xd807aa98a3030242ULL,
......
...@@ -255,7 +255,7 @@ test_hmac(char *algo, struct hmac_testvec * template, unsigned int tcount) ...@@ -255,7 +255,7 @@ test_hmac(char *algo, struct hmac_testvec * template, unsigned int tcount)
#endif /* CONFIG_CRYPTO_HMAC */ #endif /* CONFIG_CRYPTO_HMAC */
void static void
test_cipher(char * algo, int mode, int enc, struct cipher_testvec * template, unsigned int tcount) test_cipher(char * algo, int mode, int enc, struct cipher_testvec * template, unsigned int tcount)
{ {
unsigned int ret, i, j, k, temp; unsigned int ret, i, j, k, temp;
......
...@@ -63,7 +63,7 @@ struct cipher_testvec { ...@@ -63,7 +63,7 @@ struct cipher_testvec {
*/ */
#define MD4_TEST_VECTORS 7 #define MD4_TEST_VECTORS 7
struct hash_testvec md4_tv_template [] = { static struct hash_testvec md4_tv_template [] = {
{ {
.plaintext = "", .plaintext = "",
.digest = { 0x31, 0xd6, 0xcf, 0xe0, 0xd1, 0x6a, 0xe9, 0x31, .digest = { 0x31, 0xd6, 0xcf, 0xe0, 0xd1, 0x6a, 0xe9, 0x31,
...@@ -109,7 +109,7 @@ struct hash_testvec md4_tv_template [] = { ...@@ -109,7 +109,7 @@ struct hash_testvec md4_tv_template [] = {
*/ */
#define MD5_TEST_VECTORS 7 #define MD5_TEST_VECTORS 7
struct hash_testvec md5_tv_template[] = { static struct hash_testvec md5_tv_template[] = {
{ {
.digest = { 0xd4, 0x1d, 0x8c, 0xd9, 0x8f, 0x00, 0xb2, 0x04, .digest = { 0xd4, 0x1d, 0x8c, 0xd9, 0x8f, 0x00, 0xb2, 0x04,
0xe9, 0x80, 0x09, 0x98, 0xec, 0xf8, 0x42, 0x7e }, 0xe9, 0x80, 0x09, 0x98, 0xec, 0xf8, 0x42, 0x7e },
...@@ -154,7 +154,7 @@ struct hash_testvec md5_tv_template[] = { ...@@ -154,7 +154,7 @@ struct hash_testvec md5_tv_template[] = {
*/ */
#define SHA1_TEST_VECTORS 2 #define SHA1_TEST_VECTORS 2
struct hash_testvec sha1_tv_template[] = { static struct hash_testvec sha1_tv_template[] = {
{ {
.plaintext = "abc", .plaintext = "abc",
.psize = 3, .psize = 3,
...@@ -175,7 +175,7 @@ struct hash_testvec sha1_tv_template[] = { ...@@ -175,7 +175,7 @@ struct hash_testvec sha1_tv_template[] = {
*/ */
#define SHA256_TEST_VECTORS 2 #define SHA256_TEST_VECTORS 2
struct hash_testvec sha256_tv_template[] = { static struct hash_testvec sha256_tv_template[] = {
{ {
.plaintext = "abc", .plaintext = "abc",
.psize = 3, .psize = 3,
...@@ -200,7 +200,7 @@ struct hash_testvec sha256_tv_template[] = { ...@@ -200,7 +200,7 @@ struct hash_testvec sha256_tv_template[] = {
*/ */
#define SHA384_TEST_VECTORS 4 #define SHA384_TEST_VECTORS 4
struct hash_testvec sha384_tv_template[] = { static struct hash_testvec sha384_tv_template[] = {
{ {
.plaintext= "abc", .plaintext= "abc",
.psize = 3, .psize = 3,
...@@ -249,7 +249,7 @@ struct hash_testvec sha384_tv_template[] = { ...@@ -249,7 +249,7 @@ struct hash_testvec sha384_tv_template[] = {
*/ */
#define SHA512_TEST_VECTORS 4 #define SHA512_TEST_VECTORS 4
struct hash_testvec sha512_tv_template[] = { static struct hash_testvec sha512_tv_template[] = {
{ {
.plaintext = "abc", .plaintext = "abc",
.psize = 3, .psize = 3,
...@@ -309,7 +309,7 @@ struct hash_testvec sha512_tv_template[] = { ...@@ -309,7 +309,7 @@ struct hash_testvec sha512_tv_template[] = {
*/ */
#define WP512_TEST_VECTORS 8 #define WP512_TEST_VECTORS 8
struct hash_testvec wp512_tv_template[] = { static struct hash_testvec wp512_tv_template[] = {
{ {
.plaintext = "", .plaintext = "",
.psize = 0, .psize = 0,
...@@ -407,7 +407,7 @@ struct hash_testvec wp512_tv_template[] = { ...@@ -407,7 +407,7 @@ struct hash_testvec wp512_tv_template[] = {
#define WP384_TEST_VECTORS 8 #define WP384_TEST_VECTORS 8
struct hash_testvec wp384_tv_template[] = { static struct hash_testvec wp384_tv_template[] = {
{ {
.plaintext = "", .plaintext = "",
.psize = 0, .psize = 0,
...@@ -489,7 +489,7 @@ struct hash_testvec wp384_tv_template[] = { ...@@ -489,7 +489,7 @@ struct hash_testvec wp384_tv_template[] = {
#define WP256_TEST_VECTORS 8 #define WP256_TEST_VECTORS 8
struct hash_testvec wp256_tv_template[] = { static struct hash_testvec wp256_tv_template[] = {
{ {
.plaintext = "", .plaintext = "",
.psize = 0, .psize = 0,
...@@ -561,7 +561,7 @@ struct hash_testvec wp256_tv_template[] = { ...@@ -561,7 +561,7 @@ struct hash_testvec wp256_tv_template[] = {
*/ */
#define HMAC_MD5_TEST_VECTORS 7 #define HMAC_MD5_TEST_VECTORS 7
struct hmac_testvec hmac_md5_tv_template[] = static struct hmac_testvec hmac_md5_tv_template[] =
{ {
{ {
.key = { [0 ... 15] = 0x0b }, .key = { [0 ... 15] = 0x0b },
...@@ -625,7 +625,7 @@ struct hmac_testvec hmac_md5_tv_template[] = ...@@ -625,7 +625,7 @@ struct hmac_testvec hmac_md5_tv_template[] =
*/ */
#define HMAC_SHA1_TEST_VECTORS 7 #define HMAC_SHA1_TEST_VECTORS 7
struct hmac_testvec hmac_sha1_tv_template[] = { static struct hmac_testvec hmac_sha1_tv_template[] = {
{ {
.key = { [0 ... 19] = 0x0b }, .key = { [0 ... 19] = 0x0b },
.ksize = 20, .ksize = 20,
...@@ -690,7 +690,7 @@ struct hmac_testvec hmac_sha1_tv_template[] = { ...@@ -690,7 +690,7 @@ struct hmac_testvec hmac_sha1_tv_template[] = {
*/ */
#define HMAC_SHA256_TEST_VECTORS 10 #define HMAC_SHA256_TEST_VECTORS 10
struct hmac_testvec hmac_sha256_tv_template[] = { static struct hmac_testvec hmac_sha256_tv_template[] = {
{ {
.key = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, .key = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10,
...@@ -813,7 +813,7 @@ struct hmac_testvec hmac_sha256_tv_template[] = { ...@@ -813,7 +813,7 @@ struct hmac_testvec hmac_sha256_tv_template[] = {
#define DES3_EDE_ENC_TEST_VECTORS 3 #define DES3_EDE_ENC_TEST_VECTORS 3
#define DES3_EDE_DEC_TEST_VECTORS 3 #define DES3_EDE_DEC_TEST_VECTORS 3
struct cipher_testvec des_enc_tv_template[] = { static struct cipher_testvec des_enc_tv_template[] = {
{ /* From Applied Cryptography */ { /* From Applied Cryptography */
.key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef }, .key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef },
.klen = 8, .klen = 8,
...@@ -917,7 +917,7 @@ struct cipher_testvec des_enc_tv_template[] = { ...@@ -917,7 +917,7 @@ struct cipher_testvec des_enc_tv_template[] = {
}, },
}; };
struct cipher_testvec des_dec_tv_template[] = { static struct cipher_testvec des_dec_tv_template[] = {
{ /* From Applied Cryptography */ { /* From Applied Cryptography */
.key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef }, .key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef },
.klen = 8, .klen = 8,
...@@ -957,7 +957,7 @@ struct cipher_testvec des_dec_tv_template[] = { ...@@ -957,7 +957,7 @@ struct cipher_testvec des_dec_tv_template[] = {
}, },
}; };
struct cipher_testvec des_cbc_enc_tv_template[] = { static struct cipher_testvec des_cbc_enc_tv_template[] = {
{ /* From OpenSSL */ { /* From OpenSSL */
.key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef}, .key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef},
.klen = 8, .klen = 8,
...@@ -1012,7 +1012,7 @@ struct cipher_testvec des_cbc_enc_tv_template[] = { ...@@ -1012,7 +1012,7 @@ struct cipher_testvec des_cbc_enc_tv_template[] = {
}, },
}; };
struct cipher_testvec des_cbc_dec_tv_template[] = { static struct cipher_testvec des_cbc_dec_tv_template[] = {
{ /* FIPS Pub 81 */ { /* FIPS Pub 81 */
.key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef }, .key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef },
.klen = 8, .klen = 8,
...@@ -1053,7 +1053,7 @@ struct cipher_testvec des_cbc_dec_tv_template[] = { ...@@ -1053,7 +1053,7 @@ struct cipher_testvec des_cbc_dec_tv_template[] = {
/* /*
* We really need some more test vectors, especially for DES3 CBC. * We really need some more test vectors, especially for DES3 CBC.
*/ */
struct cipher_testvec des3_ede_enc_tv_template[] = { static struct cipher_testvec des3_ede_enc_tv_template[] = {
{ /* These are from openssl */ { /* These are from openssl */
.key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, .key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef,
0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55,
...@@ -1084,7 +1084,7 @@ struct cipher_testvec des3_ede_enc_tv_template[] = { ...@@ -1084,7 +1084,7 @@ struct cipher_testvec des3_ede_enc_tv_template[] = {
}, },
}; };
struct cipher_testvec des3_ede_dec_tv_template[] = { static struct cipher_testvec des3_ede_dec_tv_template[] = {
{ /* These are from openssl */ { /* These are from openssl */
.key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, .key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef,
0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55,
...@@ -1123,7 +1123,7 @@ struct cipher_testvec des3_ede_dec_tv_template[] = { ...@@ -1123,7 +1123,7 @@ struct cipher_testvec des3_ede_dec_tv_template[] = {
#define BF_CBC_ENC_TEST_VECTORS 1 #define BF_CBC_ENC_TEST_VECTORS 1
#define BF_CBC_DEC_TEST_VECTORS 1 #define BF_CBC_DEC_TEST_VECTORS 1
struct cipher_testvec bf_enc_tv_template[] = { static struct cipher_testvec bf_enc_tv_template[] = {
{ /* DES test vectors from OpenSSL */ { /* DES test vectors from OpenSSL */
.key = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, }, .key = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, },
.klen = 8, .klen = 8,
...@@ -1178,7 +1178,7 @@ struct cipher_testvec bf_enc_tv_template[] = { ...@@ -1178,7 +1178,7 @@ struct cipher_testvec bf_enc_tv_template[] = {
}, },
}; };
struct cipher_testvec bf_dec_tv_template[] = { static struct cipher_testvec bf_dec_tv_template[] = {
{ /* DES test vectors from OpenSSL */ { /* DES test vectors from OpenSSL */
.key = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, .key = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
.klen = 8, .klen = 8,
...@@ -1233,7 +1233,7 @@ struct cipher_testvec bf_dec_tv_template[] = { ...@@ -1233,7 +1233,7 @@ struct cipher_testvec bf_dec_tv_template[] = {
}, },
}; };
struct cipher_testvec bf_cbc_enc_tv_template[] = { static struct cipher_testvec bf_cbc_enc_tv_template[] = {
{ /* From OpenSSL */ { /* From OpenSSL */
.key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, .key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef,
0xf0, 0xe1, 0xd2, 0xc3, 0xb4, 0xa5, 0x96, 0x87 }, 0xf0, 0xe1, 0xd2, 0xc3, 0xb4, 0xa5, 0x96, 0x87 },
...@@ -1252,7 +1252,7 @@ struct cipher_testvec bf_cbc_enc_tv_template[] = { ...@@ -1252,7 +1252,7 @@ struct cipher_testvec bf_cbc_enc_tv_template[] = {
}, },
}; };
struct cipher_testvec bf_cbc_dec_tv_template[] = { static struct cipher_testvec bf_cbc_dec_tv_template[] = {
{ /* From OpenSSL */ { /* From OpenSSL */
.key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, .key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef,
0xf0, 0xe1, 0xd2, 0xc3, 0xb4, 0xa5, 0x96, 0x87 }, 0xf0, 0xe1, 0xd2, 0xc3, 0xb4, 0xa5, 0x96, 0x87 },
...@@ -1279,7 +1279,7 @@ struct cipher_testvec bf_cbc_dec_tv_template[] = { ...@@ -1279,7 +1279,7 @@ struct cipher_testvec bf_cbc_dec_tv_template[] = {
#define TF_CBC_ENC_TEST_VECTORS 4 #define TF_CBC_ENC_TEST_VECTORS 4
#define TF_CBC_DEC_TEST_VECTORS 4 #define TF_CBC_DEC_TEST_VECTORS 4
struct cipher_testvec tf_enc_tv_template[] = { static struct cipher_testvec tf_enc_tv_template[] = {
{ {
.key = { [0 ... 15] = 0x00 }, .key = { [0 ... 15] = 0x00 },
.klen = 16, .klen = 16,
...@@ -1312,7 +1312,7 @@ struct cipher_testvec tf_enc_tv_template[] = { ...@@ -1312,7 +1312,7 @@ struct cipher_testvec tf_enc_tv_template[] = {
}, },
}; };
struct cipher_testvec tf_dec_tv_template[] = { static struct cipher_testvec tf_dec_tv_template[] = {
{ {
.key = { [0 ... 15] = 0x00 }, .key = { [0 ... 15] = 0x00 },
.klen = 16, .klen = 16,
...@@ -1345,7 +1345,7 @@ struct cipher_testvec tf_dec_tv_template[] = { ...@@ -1345,7 +1345,7 @@ struct cipher_testvec tf_dec_tv_template[] = {
}, },
}; };
struct cipher_testvec tf_cbc_enc_tv_template[] = { static struct cipher_testvec tf_cbc_enc_tv_template[] = {
{ /* Generated with Nettle */ { /* Generated with Nettle */
.key = { [0 ... 15] = 0x00 }, .key = { [0 ... 15] = 0x00 },
.klen = 16, .klen = 16,
...@@ -1391,7 +1391,7 @@ struct cipher_testvec tf_cbc_enc_tv_template[] = { ...@@ -1391,7 +1391,7 @@ struct cipher_testvec tf_cbc_enc_tv_template[] = {
}, },
}; };
struct cipher_testvec tf_cbc_dec_tv_template[] = { static struct cipher_testvec tf_cbc_dec_tv_template[] = {
{ /* Reverse of the first four above */ { /* Reverse of the first four above */
.key = { [0 ... 15] = 0x00 }, .key = { [0 ... 15] = 0x00 },
.klen = 16, .klen = 16,
...@@ -1447,7 +1447,7 @@ struct cipher_testvec tf_cbc_dec_tv_template[] = { ...@@ -1447,7 +1447,7 @@ struct cipher_testvec tf_cbc_dec_tv_template[] = {
#define TNEPRES_ENC_TEST_VECTORS 4 #define TNEPRES_ENC_TEST_VECTORS 4
#define TNEPRES_DEC_TEST_VECTORS 4 #define TNEPRES_DEC_TEST_VECTORS 4
struct cipher_testvec serpent_enc_tv_template[] = static struct cipher_testvec serpent_enc_tv_template[] =
{ {
{ {
.input = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, .input = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
...@@ -1489,7 +1489,7 @@ struct cipher_testvec serpent_enc_tv_template[] = ...@@ -1489,7 +1489,7 @@ struct cipher_testvec serpent_enc_tv_template[] =
}, },
}; };
struct cipher_testvec tnepres_enc_tv_template[] = static struct cipher_testvec tnepres_enc_tv_template[] =
{ {
{ /* KeySize=128, PT=0, I=1 */ { /* KeySize=128, PT=0, I=1 */
.input = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, .input = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
...@@ -1540,7 +1540,7 @@ struct cipher_testvec tnepres_enc_tv_template[] = ...@@ -1540,7 +1540,7 @@ struct cipher_testvec tnepres_enc_tv_template[] =
}; };
struct cipher_testvec serpent_dec_tv_template[] = static struct cipher_testvec serpent_dec_tv_template[] =
{ {
{ {
.input = { 0x12, 0x07, 0xfc, 0xce, 0x9b, 0xd0, 0xd6, 0x47, .input = { 0x12, 0x07, 0xfc, 0xce, 0x9b, 0xd0, 0xd6, 0x47,
...@@ -1582,7 +1582,7 @@ struct cipher_testvec serpent_dec_tv_template[] = ...@@ -1582,7 +1582,7 @@ struct cipher_testvec serpent_dec_tv_template[] =
}, },
}; };
struct cipher_testvec tnepres_dec_tv_template[] = static struct cipher_testvec tnepres_dec_tv_template[] =
{ {
{ {
.input = { 0x41, 0xcc, 0x6b, 0x31, 0x59, 0x31, 0x45, 0x97, .input = { 0x41, 0xcc, 0x6b, 0x31, 0x59, 0x31, 0x45, 0x97,
...@@ -1629,7 +1629,7 @@ struct cipher_testvec tnepres_dec_tv_template[] = ...@@ -1629,7 +1629,7 @@ struct cipher_testvec tnepres_dec_tv_template[] =
#define CAST6_ENC_TEST_VECTORS 3 #define CAST6_ENC_TEST_VECTORS 3
#define CAST6_DEC_TEST_VECTORS 3 #define CAST6_DEC_TEST_VECTORS 3
struct cipher_testvec cast6_enc_tv_template[] = static struct cipher_testvec cast6_enc_tv_template[] =
{ {
{ {
.key = { 0x23, 0x42, 0xbb, 0x9e, 0xfa, 0x38, 0x54, 0x2c, .key = { 0x23, 0x42, 0xbb, 0x9e, 0xfa, 0x38, 0x54, 0x2c,
...@@ -1664,7 +1664,7 @@ struct cipher_testvec cast6_enc_tv_template[] = ...@@ -1664,7 +1664,7 @@ struct cipher_testvec cast6_enc_tv_template[] =
}, },
}; };
struct cipher_testvec cast6_dec_tv_template[] = static struct cipher_testvec cast6_dec_tv_template[] =
{ {
{ {
.key = { 0x23, 0x42, 0xbb, 0x9e, 0xfa, 0x38, 0x54, 0x2c, .key = { 0x23, 0x42, 0xbb, 0x9e, 0xfa, 0x38, 0x54, 0x2c,
...@@ -1706,7 +1706,7 @@ struct cipher_testvec cast6_dec_tv_template[] = ...@@ -1706,7 +1706,7 @@ struct cipher_testvec cast6_dec_tv_template[] =
#define AES_ENC_TEST_VECTORS 3 #define AES_ENC_TEST_VECTORS 3
#define AES_DEC_TEST_VECTORS 3 #define AES_DEC_TEST_VECTORS 3
struct cipher_testvec aes_enc_tv_template[] = { static struct cipher_testvec aes_enc_tv_template[] = {
{ /* From FIPS-197 */ { /* From FIPS-197 */
.key = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, .key = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f }, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f },
...@@ -1743,7 +1743,7 @@ struct cipher_testvec aes_enc_tv_template[] = { ...@@ -1743,7 +1743,7 @@ struct cipher_testvec aes_enc_tv_template[] = {
}, },
}; };
struct cipher_testvec aes_dec_tv_template[] = { static struct cipher_testvec aes_dec_tv_template[] = {
{ /* From FIPS-197 */ { /* From FIPS-197 */
.key = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, .key = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f }, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f },
...@@ -1784,7 +1784,7 @@ struct cipher_testvec aes_dec_tv_template[] = { ...@@ -1784,7 +1784,7 @@ struct cipher_testvec aes_dec_tv_template[] = {
#define CAST5_ENC_TEST_VECTORS 3 #define CAST5_ENC_TEST_VECTORS 3
#define CAST5_DEC_TEST_VECTORS 3 #define CAST5_DEC_TEST_VECTORS 3
struct cipher_testvec cast5_enc_tv_template[] = static struct cipher_testvec cast5_enc_tv_template[] =
{ {
{ {
.key = { 0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78, .key = { 0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78,
...@@ -1812,7 +1812,7 @@ struct cipher_testvec cast5_enc_tv_template[] = ...@@ -1812,7 +1812,7 @@ struct cipher_testvec cast5_enc_tv_template[] =
}, },
}; };
struct cipher_testvec cast5_dec_tv_template[] = static struct cipher_testvec cast5_dec_tv_template[] =
{ {
{ {
.key = { 0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78, .key = { 0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78,
...@@ -1846,7 +1846,7 @@ struct cipher_testvec cast5_dec_tv_template[] = ...@@ -1846,7 +1846,7 @@ struct cipher_testvec cast5_dec_tv_template[] =
#define ARC4_ENC_TEST_VECTORS 7 #define ARC4_ENC_TEST_VECTORS 7
#define ARC4_DEC_TEST_VECTORS 7 #define ARC4_DEC_TEST_VECTORS 7
struct cipher_testvec arc4_enc_tv_template[] = static struct cipher_testvec arc4_enc_tv_template[] =
{ {
{ {
.key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef }, .key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef },
...@@ -1913,7 +1913,7 @@ struct cipher_testvec arc4_enc_tv_template[] = ...@@ -1913,7 +1913,7 @@ struct cipher_testvec arc4_enc_tv_template[] =
}, },
}; };
struct cipher_testvec arc4_dec_tv_template[] = static struct cipher_testvec arc4_dec_tv_template[] =
{ {
{ {
.key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef }, .key = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef },
...@@ -1986,7 +1986,7 @@ struct cipher_testvec arc4_dec_tv_template[] = ...@@ -1986,7 +1986,7 @@ struct cipher_testvec arc4_dec_tv_template[] =
#define TEA_ENC_TEST_VECTORS 4 #define TEA_ENC_TEST_VECTORS 4
#define TEA_DEC_TEST_VECTORS 4 #define TEA_DEC_TEST_VECTORS 4
struct cipher_testvec tea_enc_tv_template[] = static struct cipher_testvec xtea_enc_tv_template[] =
{ {
{ {
.key = { [0 ... 15] = 0x00 }, .key = { [0 ... 15] = 0x00 },
...@@ -2030,7 +2030,7 @@ struct cipher_testvec tea_enc_tv_template[] = ...@@ -2030,7 +2030,7 @@ struct cipher_testvec tea_enc_tv_template[] =
} }
}; };
struct cipher_testvec tea_dec_tv_template[] = static struct cipher_testvec tea_dec_tv_template[] =
{ {
{ {
.key = { [0 ... 15] = 0x00 }, .key = { [0 ... 15] = 0x00 },
...@@ -2080,7 +2080,7 @@ struct cipher_testvec tea_dec_tv_template[] = ...@@ -2080,7 +2080,7 @@ struct cipher_testvec tea_dec_tv_template[] =
#define XTEA_ENC_TEST_VECTORS 4 #define XTEA_ENC_TEST_VECTORS 4
#define XTEA_DEC_TEST_VECTORS 4 #define XTEA_DEC_TEST_VECTORS 4
struct cipher_testvec xtea_enc_tv_template[] = static struct cipher_testvec tea_enc_tv_template[] =
{ {
{ {
.key = { [0 ... 15] = 0x00 }, .key = { [0 ... 15] = 0x00 },
...@@ -2124,7 +2124,7 @@ struct cipher_testvec xtea_enc_tv_template[] = ...@@ -2124,7 +2124,7 @@ struct cipher_testvec xtea_enc_tv_template[] =
} }
}; };
struct cipher_testvec xtea_dec_tv_template[] = static struct cipher_testvec xtea_dec_tv_template[] =
{ {
{ {
.key = { [0 ... 15] = 0x00 }, .key = { [0 ... 15] = 0x00 },
...@@ -2174,7 +2174,7 @@ struct cipher_testvec xtea_dec_tv_template[] = ...@@ -2174,7 +2174,7 @@ struct cipher_testvec xtea_dec_tv_template[] =
#define KHAZAD_ENC_TEST_VECTORS 5 #define KHAZAD_ENC_TEST_VECTORS 5
#define KHAZAD_DEC_TEST_VECTORS 5 #define KHAZAD_DEC_TEST_VECTORS 5
struct cipher_testvec khazad_enc_tv_template[] = { static struct cipher_testvec khazad_enc_tv_template[] = {
{ {
.key = { 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, .key = { 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
...@@ -2220,7 +2220,7 @@ struct cipher_testvec khazad_enc_tv_template[] = { ...@@ -2220,7 +2220,7 @@ struct cipher_testvec khazad_enc_tv_template[] = {
}, },
}; };
struct cipher_testvec khazad_dec_tv_template[] = { static struct cipher_testvec khazad_dec_tv_template[] = {
{ {
.key = { 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, .key = { 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
...@@ -2275,7 +2275,7 @@ struct cipher_testvec khazad_dec_tv_template[] = { ...@@ -2275,7 +2275,7 @@ struct cipher_testvec khazad_dec_tv_template[] = {
#define ANUBIS_CBC_ENC_TEST_VECTORS 2 #define ANUBIS_CBC_ENC_TEST_VECTORS 2
#define ANUBIS_CBC_DEC_TEST_VECTORS 2 #define ANUBIS_CBC_DEC_TEST_VECTORS 2
struct cipher_testvec anubis_enc_tv_template[] = { static struct cipher_testvec anubis_enc_tv_template[] = {
{ {
.key = { 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, .key = { 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe,
0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe }, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe },
...@@ -2338,7 +2338,7 @@ struct cipher_testvec anubis_enc_tv_template[] = { ...@@ -2338,7 +2338,7 @@ struct cipher_testvec anubis_enc_tv_template[] = {
}, },
}; };
struct cipher_testvec anubis_dec_tv_template[] = { static struct cipher_testvec anubis_dec_tv_template[] = {
{ {
.key = { 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, .key = { 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe,
0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe }, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe },
...@@ -2401,7 +2401,7 @@ struct cipher_testvec anubis_dec_tv_template[] = { ...@@ -2401,7 +2401,7 @@ struct cipher_testvec anubis_dec_tv_template[] = {
}, },
}; };
struct cipher_testvec anubis_cbc_enc_tv_template[] = { static struct cipher_testvec anubis_cbc_enc_tv_template[] = {
{ {
.key = { 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, .key = { 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe,
0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe }, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe },
...@@ -2436,7 +2436,7 @@ struct cipher_testvec anubis_cbc_enc_tv_template[] = { ...@@ -2436,7 +2436,7 @@ struct cipher_testvec anubis_cbc_enc_tv_template[] = {
}, },
}; };
struct cipher_testvec anubis_cbc_dec_tv_template[] = { static struct cipher_testvec anubis_cbc_dec_tv_template[] = {
{ {
.key = { 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, .key = { 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe,
0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe }, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe },
...@@ -2489,7 +2489,7 @@ struct comp_testvec { ...@@ -2489,7 +2489,7 @@ struct comp_testvec {
#define DEFLATE_COMP_TEST_VECTORS 2 #define DEFLATE_COMP_TEST_VECTORS 2
#define DEFLATE_DECOMP_TEST_VECTORS 2 #define DEFLATE_DECOMP_TEST_VECTORS 2
struct comp_testvec deflate_comp_tv_template[] = { static struct comp_testvec deflate_comp_tv_template[] = {
{ {
.inlen = 70, .inlen = 70,
.outlen = 38, .outlen = 38,
...@@ -2525,7 +2525,7 @@ struct comp_testvec deflate_comp_tv_template[] = { ...@@ -2525,7 +2525,7 @@ struct comp_testvec deflate_comp_tv_template[] = {
}, },
}; };
struct comp_testvec deflate_decomp_tv_template[] = { static struct comp_testvec deflate_decomp_tv_template[] = {
{ {
.inlen = 122, .inlen = 122,
.outlen = 191, .outlen = 191,
...@@ -2566,7 +2566,7 @@ struct comp_testvec deflate_decomp_tv_template[] = { ...@@ -2566,7 +2566,7 @@ struct comp_testvec deflate_decomp_tv_template[] = {
*/ */
#define MICHAEL_MIC_TEST_VECTORS 6 #define MICHAEL_MIC_TEST_VECTORS 6
struct hash_testvec michael_mic_tv_template[] = static struct hash_testvec michael_mic_tv_template[] =
{ {
{ {
.key = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, .key = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment