Home
last modified time | relevance | path

Searched refs:auth_len (Results 1 – 5 of 5) sorted by relevance

/linux/net/rxrpc/
H A Drxgk.c893 size_t auth_len) in rxgk_encrypt_authenticator() argument
903 auth_offset, auth_len, false); in rxgk_encrypt_authenticator()
922 size_t len, auth_len, authx_len, offset, auth_offset, authx_offset; in rxgk_construct_response() local
930 auth_len = 20 + (4 + appdata->len) + 12 + (1 + 4) * 4; in rxgk_construct_response()
932 auth_len, &auth_offset); in rxgk_construct_response()
962 auth_len = ret; in rxgk_construct_response()
966 auth_offset, auth_len); in rxgk_construct_response()
1149 unsigned int auth_offset, unsigned int auth_len) in rxgk_verify_authenticator() argument
1155 auth = kmalloc(auth_len, GFP_NOFS); in rxgk_verify_authenticator()
1159 ret = skb_copy_bits(skb, auth_offset, auth, auth_len); in rxgk_verify_authenticator()
[all …]
/linux/net/sctp/
H A Doutput.c445 int auth_len = 0; in sctp_packet_pack() local
464 auth_len = padded; in sctp_packet_pack()
465 else if (auth_len + padded + packet->overhead > in sctp_packet_pack()
/linux/drivers/crypto/intel/qat/qat_common/
H A Dicp_qat_fw_la.h294 __u32 auth_len; member
/linux/net/key/
H A Daf_key.c1615 int len, auth_len, enc_len, i; in compose_sadb_supported() local
1617 auth_len = xfrm_count_pfkey_auth_supported(); in compose_sadb_supported()
1618 if (auth_len) { in compose_sadb_supported()
1619 auth_len *= sizeof(struct sadb_alg); in compose_sadb_supported()
1620 auth_len += sizeof(struct sadb_supported); in compose_sadb_supported()
1629 len = enc_len + auth_len + sizeof(struct sadb_msg); in compose_sadb_supported()
1640 if (auth_len) { in compose_sadb_supported()
1644 sp = skb_put(skb, auth_len); in compose_sadb_supported()
1647 sp->sadb_supported_len = auth_len / sizeof(uint64_t); in compose_sadb_supported()
/linux/fs/ubifs/
H A Djournal.c860 int err, lnum, offs, compr_type, out_len, compr_len, auth_len; in ubifs_jnl_write_data() local
874 auth_len = ubifs_auth_node_sz(c); in ubifs_jnl_write_data()
876 data = kmalloc(dlen + auth_len, GFP_NOFS | __GFP_NOWARN); in ubifs_jnl_write_data()
917 write_len = ALIGN(dlen, 8) + auth_len; in ubifs_jnl_write_data()