Searched refs:bits (Results 1 – 7 of 7) sorted by relevance
/crypto/ |
D | camellia_generic.c | 327 #define ROLDQ(ll, lr, rl, rr, w0, w1, bits) ({ \ argument 329 ll = (ll << bits) + (lr >> (32 - bits)); \ 330 lr = (lr << bits) + (rl >> (32 - bits)); \ 331 rl = (rl << bits) + (rr >> (32 - bits)); \ 332 rr = (rr << bits) + (w0 >> (32 - bits)); \ 335 #define ROLDQo32(ll, lr, rl, rr, w0, w1, bits) ({ \ argument 338 ll = (lr << (bits - 32)) + (rl >> (64 - bits)); \ 339 lr = (rl << (bits - 32)) + (rr >> (64 - bits)); \ 340 rl = (rr << (bits - 32)) + (w0 >> (64 - bits)); \ 341 rr = (w0 << (bits - 32)) + (w1 >> (64 - bits)); \
|
D | jitterentropy.c | 126 unsigned int bits, unsigned int min) in jent_loop_shuffle() argument 131 unsigned int mask = (1<<bits) - 1; in jent_loop_shuffle() 144 for (i = 0; ((DATA_SIZE_BITS + bits - 1) / bits) > i; i++) { in jent_loop_shuffle() 146 time = time >> bits; in jent_loop_shuffle()
|
D | Kconfig | 405 The first 128, 192 or 256 bits in the key are used for AES and the 435 key size 256, 384 or 512 bits. This implementation currently 891 This version of SHA implements a 256 bit hash with 128 bits of 894 This code also includes SHA-224, a 224 bit hash with 112 bits 930 This version of SHA implements a 512 bit hash with 256 bits of 933 This code also includes SHA-384, a 384 bit hash with 192 bits 981 This setting enables two hash algorithms with 256 and 512 bits output. 1042 The AES specifies three key sizes: 128, 192 and 256 bits 1089 The AES specifies three key sizes: 128, 192 and 256 bits 1118 The AES specifies three key sizes: 128, 192 and 256 bits [all …]
|
D | rmd256.c | 288 __le64 bits; in rmd256_final() local 292 bits = cpu_to_le64(rctx->byte_count << 3); in rmd256_final() 300 rmd256_update(desc, (const u8 *)&bits, sizeof(bits)); in rmd256_final()
|
D | rmd128.c | 269 __le64 bits; in rmd128_final() local 273 bits = cpu_to_le64(rctx->byte_count << 3); in rmd128_final() 281 rmd128_update(desc, (const u8 *)&bits, sizeof(bits)); in rmd128_final()
|
D | rmd160.c | 313 __le64 bits; in rmd160_final() local 317 bits = cpu_to_le64(rctx->byte_count << 3); in rmd160_final() 325 rmd160_update(desc, (const u8 *)&bits, sizeof(bits)); in rmd160_final()
|
D | rmd320.c | 337 __le64 bits; in rmd320_final() local 341 bits = cpu_to_le64(rctx->byte_count << 3); in rmd320_final() 349 rmd320_update(desc, (const u8 *)&bits, sizeof(bits)); in rmd320_final()
|