Home
last modified time | relevance | path

Searched refs:blocklen (Results 1 – 6 of 6) sorted by relevance

/f-stack/freebsd/netinet/
H A Dsctp_auth.c919 uint32_t blocklen; in sctp_hmac() local
938 if (keylen > blocklen) { in sctp_hmac()
947 memset(ipad, 0, blocklen); in sctp_hmac()
948 memset(opad, 0, blocklen); in sctp_hmac()
979 uint32_t blocklen; in sctp_hmac_m() local
998 if (keylen > blocklen) { in sctp_hmac_m()
1007 memset(ipad, 0, blocklen); in sctp_hmac_m()
1008 memset(opad, 0, blocklen); in sctp_hmac_m()
1061 uint32_t blocklen; in sctp_compute_hmac() local
1078 if (key->keylen > blocklen) { in sctp_compute_hmac()
[all …]
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_aead/aes256gcm/aesni/
H A Daead_aes256gcm_aesni.c560 unsigned int blocklen = 16; in crypto_aead_aes256gcm_encrypt_detached_afternm() local
562 if (i + (unsigned long long) blocklen > adlen) { in crypto_aead_aes256gcm_encrypt_detached_afternm()
563 blocklen = (unsigned int) (adlen - i); in crypto_aead_aes256gcm_encrypt_detached_afternm()
565 addmul(accum, ad + i, blocklen, H); in crypto_aead_aes256gcm_encrypt_detached_afternm()
700 unsigned int blocklen = 16; in crypto_aead_aes256gcm_decrypt_detached_afternm() local
701 if (i + (unsigned long long) blocklen > adlen) { in crypto_aead_aes256gcm_decrypt_detached_afternm()
702 blocklen = (unsigned int) (adlen - i); in crypto_aead_aes256gcm_decrypt_detached_afternm()
704 addmul(accum, ad + i, blocklen, H); in crypto_aead_aes256gcm_decrypt_detached_afternm()
/f-stack/dpdk/examples/vhost_blk/
H A Dvhost_blk.h57 uint32_t blocklen; member
H A Dvhost_blk_compat.c47 blk_size = bdev->blocklen; in vhost_blk_get_config()
H A Dblk.c76 if (unlikely(task->data_len > (bdev->blockcnt * bdev->blocklen))) { in vhost_bdev_process_blk_commands()
H A Dvhost_blk.c762 bdev->blocklen = blk_size; in vhost_blk_bdev_construct()
766 fprintf(stdout, "Blocklen=%d, blockcnt=%"PRIx64"\n", bdev->blocklen, in vhost_blk_bdev_construct()