| /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...] |
| base64.h | 450 dec_loop_generic_32_inner (const uint8_t **s, uint8_t **o, size_t *rounds) 475 *rounds -= 1; 491 size_t rounds = (*slen - 4) / 4; local 493 *slen -= rounds * 4; // 4 bytes consumed per round 494 *olen += rounds * 3; // 3 bytes produced per round 497 if (rounds >= 8) { 498 if (dec_loop_generic_32_inner(s, o, &rounds) && 499 dec_loop_generic_32_inner(s, o, &rounds) && 500 dec_loop_generic_32_inner(s, o, &rounds) && 501 dec_loop_generic_32_inner(s, o, &rounds) & [all...] |
| /src/sys/crypto/cast128/ |
| cast128.h | 16 int rounds; /* Number of rounds to use, 12 or 16 */ member in struct:__anon2459
|
| cast128.c | 70 /* Only do full 16 rounds if key length > 80 bits */ 71 if (key->rounds > 12) { 104 /* Only do full 16 rounds if key length > 80 bits */ 105 if (key->rounds > 12) { 144 /* Set number of rounds to 12 or 16, depending on key length */ 145 key->rounds = (keybytes <= 10 ? 12 : 16);
|
| /src/share/examples/rump/sdread/ |
| sdread.c | 63 int fd, val = 0, rounds = 0; local 70 if (rounds > 0) { 71 if (rounds == 1) { 81 rounds++; 82 } while (val == 0 || rounds >= 30);
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_cryptor.c | 51 size_t salt_len, unsigned rounds, uint8_t *derived_key, 55 pw_len, salt, salt_len, kCCPRFHmacAlgSHA1, rounds, 67 size_t salt_len, unsigned rounds, uint8_t *derived_key, 80 (PUCHAR)(uintptr_t)salt, (ULONG)salt_len, rounds, 92 size_t salt_len, unsigned rounds, uint8_t *derived_key, 111 pw_len, salt, salt_len, rounds, derived_key_len, derived_key); 121 size_t salt_len, unsigned rounds, uint8_t *derived_key, 123 pbkdf2_hmac_sha1((unsigned)pw_len, (const uint8_t *)pw, rounds, 132 size_t salt_len, unsigned rounds, uint8_t *derived_key, 135 PKCS5_PBKDF2_HMAC_SHA1(pw, pw_len, salt, salt_len, rounds, [all...] |
| archive_cryptor_private.h | 164 #define archive_pbkdf2_sha1(pw, pw_len, salt, salt_len, rounds, dk, dk_len)\ 165 __archive_cryptor.pbkdf2sha1(pw, pw_len, salt, salt_len, rounds, dk, dk_len) 190 size_t salt_len, unsigned rounds, uint8_t *derived_key,
|
| /src/sys/opencrypto/ |
| gmac.h | 46 int rounds; member in struct:_AES_GMAC_CTX
|
| gmac.c | 120 ctx->rounds = aes_setenckey128(&ctx->K, key); 123 ctx->rounds = aes_setenckey192(&ctx->K, key); 126 ctx->rounds = aes_setenckey256(&ctx->K, key); 136 ctx->rounds); 179 aes_enc(&ctx->K, ctx->J, keystream, ctx->rounds);
|
| /src/tests/rump/rumpkern/h_client/ |
| h_stresscli.c | 136 int rounds, myport; local 153 for (rounds = 1; rounds < atoi(argv[1])*10; rounds++) {
|
| /src/lib/libcrypt/ |
| bcrypt.c | 36 * REPEAT rounds: 60 * You can have up to 2^31 rounds which should be enough for some 68 #define BCRYPT_MINROUNDS 16 /* we have log2(rounds) in salt */ 213 u_int32_t rounds, i, k; local 254 if ((rounds = (u_int32_t) 1 << logr) < BCRYPT_MINROUNDS) 257 /* Discard num rounds + "$" identifier */ 277 for (k = 0; k < rounds; k++) {
|
| /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/salsa/ref/ |
| core_salsa_ref.c | 13 const int rounds) 45 for (i = 0; i < rounds; i += 2) {
|
| /src/sys/netinet/ |
| tcp_congctl.c | 837 int i, rounds = CBRT_ROUNDS; local 851 rounds += 10; 853 for (i = 0; i < rounds; i++) 854 if (rounds == CBRT_ROUNDS)
|
| /src/sys/dev/marvell/ |
| mvxpsec.c | 2940 int KC, BC, ROUNDS; 2946 ROUNDS = 10; 2950 ROUNDS = 12; 2954 ROUNDS = 14; 2968 for(j = 0; (j < KC) && (t < (ROUNDS+1)*BC); j++, t++) 2971 while (t < (ROUNDS+1)*BC) { /* while not enough round key material calculated */ 2992 for(j = 0; (j < KC) && (t < (ROUNDS+1)*BC); j++, t++) 3005 int i, rounds, KC; local 3025 rounds = 10; 3029 rounds = 12 [all...] |
| /src/external/bsd/unbound/dist/testcode/ |
| fake_event.c | 898 int rounds = 0; local 925 rounds++; 926 if(rounds > max_rounds) 927 fatal_exit("testbound: too many rounds, it loops.");
|