| /src/external/bsd/nsd/dist/simdzone/src/generic/ |
| base16.h | 78 const uint8_t **s, uint8_t **o, size_t *rounds) 93 *rounds -= 1; 106 size_t rounds = (*slen - 4) / 4; 108 *slen -= rounds * 4; // 4 bytes consumed per round 109 *olen += rounds * 2; // 2 bytes produced per round 112 if (rounds >= 8) { 113 if (base16_dec_loop_generic_32_inner(s, o, &rounds) && 114 base16_dec_loop_generic_32_inner(s, o, &rounds) && 115 base16_dec_loop_generic_32_inner(s, o, &rounds) && 116 base16_dec_loop_generic_32_inner(s, o, &rounds) & [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/rc5/ |
| rc5_skey.c | 20 int rounds) 28 if ((rounds != RC5_16_ROUNDS) && (rounds != RC5_12_ROUNDS) && (rounds != RC5_8_ROUNDS)) 29 rounds = RC5_16_ROUNDS; 31 key->rounds = rounds; 49 t = (rounds + 1) * 2;
|
| /src/crypto/external/bsd/openssl/dist/crypto/rc5/ |
| rc5_skey.c | 20 int rounds) 28 if ((rounds != RC5_16_ROUNDS) && 29 (rounds != RC5_12_ROUNDS) && (rounds != RC5_8_ROUNDS)) 30 rounds = RC5_16_ROUNDS; 32 key->rounds = rounds; 50 t = (rounds + 1) * 2;
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/rc5/ |
| rc5_skey.c | 14 int rounds) 19 if ((rounds != RC5_16_ROUNDS) && 20 (rounds != RC5_12_ROUNDS) && (rounds != RC5_8_ROUNDS)) 21 rounds = RC5_16_ROUNDS; 23 key->rounds = rounds; 41 t = (rounds + 1) * 2;
|
| /src/crypto/external/apache2/openssl/dist/crypto/evp/ |
| e_rc5.c | 32 int rounds; /* number of rounds */ member in struct:__anon298 47 data(c)->rounds = RC5_12_ROUNDS; 51 *(int *)ptr = data(c)->rounds; 59 data(c)->rounds = arg; 81 return RC5_32_set_key(&data(ctx)->ks, key_len, key, data(ctx)->rounds);
|
| /src/crypto/external/bsd/openssl/dist/crypto/evp/ |
| e_rc5.c | 32 int rounds; /* number of rounds */ member in struct:__anon1407 47 data(c)->rounds = RC5_12_ROUNDS; 51 *(int *)ptr = data(c)->rounds; 59 data(c)->rounds = arg; 81 return RC5_32_set_key(&data(ctx)->ks, key_len, key, data(ctx)->rounds);
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/evp/ |
| e_rc5.c | 26 int rounds; /* number of rounds */ member in struct:__anon2051 41 data(c)->rounds = RC5_12_ROUNDS; 45 *(int *)ptr = data(c)->rounds; 53 data(c)->rounds = arg; 74 key, data(ctx)->rounds);
|
| /src/crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/ |
| rijndael-alg-fst.h | 19 int rijndaelKeySched(u_int8_t k[RIJNDAEL_MAXKC][4], u_int8_t rk[RIJNDAEL_MAXROUNDS+1][4][4], int ROUNDS); 21 int rijndaelKeyEncToDec(u_int8_t W[RIJNDAEL_MAXROUNDS+1][4][4], int ROUNDS); 23 int rijndaelEncrypt(u_int8_t a[16], u_int8_t b[16], u_int8_t rk[RIJNDAEL_MAXROUNDS+1][4][4], int ROUNDS); 26 int rijndaelEncryptRound(u_int8_t a[4][4], u_int8_t rk[RIJNDAEL_MAXROUNDS+1][4][4], int ROUNDS, int rounds); 29 int rijndaelDecrypt(u_int8_t a[16], u_int8_t b[16], u_int8_t rk[RIJNDAEL_MAXROUNDS+1][4][4], int ROUNDS); 32 int rijndaelDecryptRound(u_int8_t a[4][4], u_int8_t rk[RIJNDAEL_MAXROUNDS+1][4][4], int ROUNDS, int rounds);
|
| /src/sys/crypto/cast128/ |
| cast128.h | 16 int rounds; /* Number of rounds to use, 12 or 16 */ member in struct:__anon2459
|
| /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/ |
| cipher_rc5.h | 19 unsigned int rounds; /* number of rounds */ member in struct:prov_rc5_ctx_st
|
| cipher_rc5.c | 88 unsigned int rounds; local 90 if (!OSSL_PARAM_get_uint(p, &rounds)) { 94 if (rounds != RC5_8_ROUNDS 95 && rounds != RC5_12_ROUNDS 96 && rounds != RC5_16_ROUNDS) { 100 ctx->rounds = rounds; 122 if (p != NULL && !OSSL_PARAM_set_uint(p, ctx->rounds)) { 149 ctx->rounds = RC5_12_ROUNDS; \
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ |
| cipher_rc5.h | 19 unsigned int rounds; /* number of rounds */ member in struct:prov_blowfish_ctx_st
|
| /src/crypto/external/apache2/openssl/dist/crypto/aes/asm/ |
| aes-armv4.pl | 72 $rounds="r12"; 214 mov $rounds,r0 @ inp 217 ldrb $s0,[$rounds,#3] @ load input data in endian-neutral 218 ldrb $t1,[$rounds,#2] @ manner... 219 ldrb $t2,[$rounds,#1] 220 ldrb $t3,[$rounds,#0] 222 ldrb $s1,[$rounds,#7] 224 ldrb $t1,[$rounds,#6] 226 ldrb $t2,[$rounds,#5] 227 ldrb $t3,[$rounds,#4 [all...] |
| aesni-x86.pl | 90 $rounds="ecx"; 94 $rounds_="ebx"; # backup copy for $rounds 138 &dec ($rounds); 154 &cmp ($rounds,11); 198 &mov ($rounds,&DWP(240,$key)); 217 &mov ($rounds,&DWP(240,$key)); 250 &shl ($rounds,4); 255 &lea ($key,&DWP(32,$key,$rounds)); 256 &neg ($rounds); 257 &add ($rounds,16) [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/aes/asm/ |
| aes-armv4.pl | 72 $rounds="r12"; 214 mov $rounds,r0 @ inp 217 ldrb $s0,[$rounds,#3] @ load input data in endian-neutral 218 ldrb $t1,[$rounds,#2] @ manner... 219 ldrb $t2,[$rounds,#1] 220 ldrb $t3,[$rounds,#0] 222 ldrb $s1,[$rounds,#7] 224 ldrb $t1,[$rounds,#6] 226 ldrb $t2,[$rounds,#5] 227 ldrb $t3,[$rounds,#4 [all...] |
| aesni-x86.pl | 90 $rounds="ecx"; 94 $rounds_="ebx"; # backup copy for $rounds 138 &dec ($rounds); 154 &cmp ($rounds,11); 198 &mov ($rounds,&DWP(240,$key)); 217 &mov ($rounds,&DWP(240,$key)); 250 &shl ($rounds,4); 255 &lea ($key,&DWP(32,$key,$rounds)); 256 &neg ($rounds); 257 &add ($rounds,16) [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/aes/asm/ |
| aes-armv4.pl | 70 $rounds="r12"; 211 mov $rounds,r0 @ inp 214 ldrb $s0,[$rounds,#3] @ load input data in endian-neutral 215 ldrb $t1,[$rounds,#2] @ manner... 216 ldrb $t2,[$rounds,#1] 217 ldrb $t3,[$rounds,#0] 219 ldrb $s1,[$rounds,#7] 221 ldrb $t1,[$rounds,#6] 223 ldrb $t2,[$rounds,#5] 224 ldrb $t3,[$rounds,#4 [all...] |
| aesni-x86.pl | 92 $rounds="ecx"; 96 $rounds_="ebx"; # backup copy for $rounds 140 &dec ($rounds); 156 &cmp ($rounds,11); 200 &mov ($rounds,&DWP(240,$key)); 219 &mov ($rounds,&DWP(240,$key)); 252 &shl ($rounds,4); 257 &lea ($key,&DWP(32,$key,$rounds)); 258 &neg ($rounds); 259 &add ($rounds,16) [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| aes.c | 49 key->rounds = rijndaelKeySetupEnc(key->key, userkey, bits); 50 if (key->rounds == 0) 58 key->rounds = rijndaelKeySetupDec(key->key, userkey, bits); 59 if (key->rounds == 0) 67 rijndaelEncrypt(key->key, key->rounds, in, out); 73 rijndaelDecrypt(key->key, key->rounds, in, out);
|
| aes.h | 61 int rounds; member in struct:aes_key
|
| /src/crypto/external/bsd/openssl.old/dist/include/openssl/ |
| rc5.h | 37 /* Number of rounds */ 38 int rounds; member in struct:rc5_key_st 43 int rounds);
|
| /src/crypto/external/bsd/openssh/dist/ |
| cipher-aesctr.h | 27 int rounds; /* keylen-dependent #rounds */ member in struct:aesctr_ctx
|
| /src/crypto/external/apache2/openssl/dist/test/recipes/30-test_evp_data/ |
| evpmac_siphash.txt | 14 # SIPHASH tests - default values: 2,4 rounds, 16-byte mac 129 # SIPHASH - default values: 2,4 rounds, explicit 8-byte mac 143 # SIPHASH - default values: 2,4 rounds, explicit 16-byte mac 151 # SIPHASH - default values: 2,4 rounds, explicit 16-byte mac (set as 0) 159 # SIPHASH - default values: 2,4 rounds, explicit 13-byte mac (invalid size) 166 # SIPHASH - default values: 2,4 rounds, explicit 13-byte mac (invalid size) 174 Title = SIPHASH - explicit rounds 178 Ctrl = c-rounds:2 179 Ctrl = d-rounds:4 185 Title = SIPHASH - non-default values: 4,8 rounds [all...] |
| /src/crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/ |
| evpmac_siphash.txt | 14 # SIPHASH tests - default values: 2,4 rounds, 16-byte mac 129 # SIPHASH - default values: 2,4 rounds, explicit 8-byte mac 143 # SIPHASH - default values: 2,4 rounds, explicit 16-byte mac 151 # SIPHASH - default values: 2,4 rounds, explicit 16-byte mac (set as 0) 159 # SIPHASH - default values: 2,4 rounds, explicit 13-byte mac (invalid size) 166 # SIPHASH - default values: 2,4 rounds, explicit 13-byte mac (invalid size) 174 Title = SIPHASH - explicit rounds 178 Ctrl = c-rounds:2 179 Ctrl = d-rounds:4 185 Title = SIPHASH - non-default values: 4,8 rounds [all...] |
| /src/crypto/external/apache2/openssl/dist/include/crypto/ |
| aria.h | 38 unsigned int rounds; member in struct:aria_key_st
|