/freebsd-src/sys/contrib/openzfs/module/icp/include/modes/ |
H A D | modes.h | 215 void (*xor_block)(uint8_t *, uint8_t *)); 221 void (*xor_block)(uint8_t *, uint8_t *)); 227 void (*xor_block)(uint8_t *, uint8_t *)); 233 void (*xor_block)(uint8_t *, uint8_t *)); 237 void (*xor_block)(uint8_t *, uint8_t *)); 242 void (*xor_block)(uint8_t *, uint8_t *)); 247 void (*xor_block)(uint8_t *, uint8_t *)); 251 void (*xor_block)(uint8_t *, uint8_t *)); 255 void (*xor_block)(uint8_t *, uint8_t *)); 260 void (*xor_block)(uint8_ [all...] |
/freebsd-src/sys/net80211/ |
H A D | ieee80211_crypto_ccmp.c | 321 xor_block(uint8_t *b, const uint8_t *a, size_t len) in xor_block() function 426 xor_block(auth, aad, AES_BLOCK_LEN); in ccmp_init_blocks() 428 xor_block(auth, &aad[AES_BLOCK_LEN], AES_BLOCK_LEN); in ccmp_init_blocks() 438 xor_block(_b, _pos, _len); \ 444 xor_block(_pos, _e, _len); \ 520 xor_block(b+sp, pos_next, space_next); in ccmp_encrypt() 528 xor_block(b+sp, pos_next, n->m_len); in ccmp_encrypt() 545 xor_block(pos_next, e+sp, space_next); in ccmp_encrypt() 548 xor_block(pos_next, e+sp, m->m_len); in ccmp_encrypt() 576 xor_block(b, s0, ccmp.ic_trailer); in ccmp_encrypt() [all …]
|
/freebsd-src/sys/contrib/openzfs/module/icp/algs/modes/ |
H A D | ccm.c | 45 void (*xor_block)(uint8_t *, uint8_t *)) in ccm_mode_encrypt_contiguous_blocks() 96 xor_block(blockp, mac_buf); in ccm_mode_encrypt_contiguous_blocks() 123 xor_block(blockp, lastp); in ccm_mode_encrypt_contiguous_blocks() 195 void (*xor_block)(uint8_t *, uint8_t *)) in ccm_encrypt_final() 232 xor_block(macp, mac_buf); in ccm_encrypt_final() 347 void (*xor_block)(uint8_t *, uint8_t *)) in ccm_mode_decrypt_contiguous_blocks() 470 xor_block(blockp, cbp); in ccm_mode_decrypt_contiguous_blocks() 520 void (*xor_block)(uint8_t *, uint8_t *)) in ccm_decrypt_final() 551 xor_block(macp, mac_buf); in ccm_decrypt_final() 761 void (*xor_block)(uint8_t *, uint8_t *)) in ccm_init() [all …]
|
H A D | gcm.c | 39 xor_block((uint8_t *)(d), (uint8_t *)(c)->gcm_ghash); \ 88 void (*xor_block)(uint8_t *, uint8_t *)) 152 xor_block(blockp, (uint8_t *)ctx->gcm_tmp); in gcm_mode_encrypt_contiguous_blocks() 206 void (*xor_block)(uint8_t *, uint8_t *)) 267 xor_block((uint8_t *)ctx->gcm_J0, ghash); in gcm_encrypt_final() 291 void (*xor_block)(uint8_t *, uint8_t *)) 332 void (*xor_block)(uint8_t *, uint8_t *)) 335 (void) xor_block; in gcm_mode_decrypt_contiguous_blocks() 373 void (*xor_block)(uint8_t *, uint8_t *)) in gcm_mode_decrypt_contiguous_blocks() 407 processed, encrypt_block, xor_block); in gcm_decrypt_final() [all...] |
H A D | cbc.c |
|
H A D | ctr.c |
|
/freebsd-src/sys/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/ |
H A D | argon2-fill-block-ref.c | 30 xor_block(&blockR, prev_block); in fill_block() 58 xor_block(next_block, &blockR); in fill_block() 69 xor_block(&blockR, prev_block); in fill_block_with_xor() 71 xor_block(&block_tmp, in fill_block_with_xor() 100 xor_block(next_block, &blockR); in fill_block_with_xor()
|
H A D | argon2-core.h | 81 xor_block(block *dst, const block *src) in xor_block() function
|
H A D | argon2-core.c | 200 xor_block(&blockhash, in finalize()
|
/freebsd-src/contrib/wpa/src/crypto/ |
H A D | aes-gcm.c | 25 static void xor_block(u8 *dst, const u8 *src) in xor_block() function 77 xor_block(z, v); in gf_mult() 113 xor_block(y, xpos); in ghash() 130 xor_block(y, tmp); in ghash() 159 xor_block(ypos, xpos); in aes_gctr()
|
/freebsd-src/contrib/bearssl/src/kdf/ |
H A D | shake.c | 50 xor_block(uint64_t *A, const void *data, size_t rate) in xor_block() function 505 xor_block(sc->A, sc->dbuf, rate); in br_shake_inject() 530 xor_block(sc->A, sc->dbuf, sc->rate); in br_shake_flip()
|