/src/sys/crypto/chacha/arch/arm/ |
chacha_neon.c | 335 uint8_t subnonce[12]; 338 memset(subnonce, 0, 4); 339 memcpy(subnonce + 4, nonce + 16, 8); 340 chacha_stream_neon(s, nbytes, blkno, subnonce, subkey, nr); 351 uint8_t subnonce[12]; 354 memset(subnonce, 0, 4); 355 memcpy(subnonce + 4, nonce + 16, 8); 356 chacha_stream_xor_neon(c, p, nbytes, blkno, subnonce, subkey, nr); 329 uint8_t subnonce[12]; local in function:xchacha_stream_neon 345 uint8_t subnonce[12]; local in function:xchacha_stream_xor_neon
|
/src/sys/crypto/chacha/ |
chacha_ref.c | 432 uint8_t subnonce[12]; 435 memset(subnonce, 0, 4); 436 memcpy(subnonce + 4, nonce + 16, 8); 437 chacha_stream_ref(s, nbytes, blkno, subnonce, subkey, nr); 448 uint8_t subnonce[12]; 451 memset(subnonce, 0, 4); 452 memcpy(subnonce + 4, nonce + 16, 8); 453 chacha_stream_xor_ref(c, p, nbytes, blkno, subnonce, subkey, nr); 425 uint8_t subnonce[12]; local in function:xchacha_stream_ref 441 uint8_t subnonce[12]; local in function:xchacha_stream_xor_ref
|
/src/sys/crypto/chacha/arch/x86/ |
chacha_sse2.c | 533 uint8_t subnonce[12]; 536 memset(subnonce, 0, 4); 537 memcpy(subnonce + 4, nonce + 16, 8); 538 chacha_stream_sse2(s, nbytes, blkno, subnonce, subkey, nr); local in function:xchacha_stream_xor_sse2 549 uint8_t subnonce[12]; 552 memset(subnonce, 0, 4); 553 memcpy(subnonce + 4, nonce + 16, 8); 554 chacha_stream_xor_sse2(c, p, nbytes, blkno, subnonce, subkey, nr); 522 uint8_t subnonce[12]; local in function:xchacha_stream_sse2
|