Home
last modified time | relevance | path

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

/linux/lib/crypto/tests/
H A Dmd5_kunit.c18 #define HMAC_UPDATE hmac_md5_update
/linux/fs/smb/client/
H A Dcifsencrypt.c286 hmac_md5_update(&hmac_ctx, (const u8 *)user, 2 * len); in calc_ntlmv2_hash()
299 hmac_md5_update(&hmac_ctx, (const u8 *)domain, 2 * len); in calc_ntlmv2_hash()
310 hmac_md5_update(&hmac_ctx, (const u8 *)server, 2 * len); in calc_ntlmv2_hash()
/linux/include/crypto/
H A Dmd5.h161 static inline void hmac_md5_update(struct hmac_md5_ctx *ctx, in hmac_md5_update() function
/linux/fs/smb/server/
H A Dauth.c102 hmac_md5_update(&ctx, (const u8 *)uniname, UNICODE_LEN(conv_len)); in calc_ntlmv2_hash()
119 hmac_md5_update(&ctx, (const u8 *)domain, UNICODE_LEN(conv_len)); in calc_ntlmv2_hash()
160 hmac_md5_update(&ctx, cryptkey, CIFS_CRYPTO_KEY_SIZE); in ksmbd_auth_ntlmv2()
161 hmac_md5_update(&ctx, (const u8 *)&ntlmv2->blob_signature, blen); in ksmbd_auth_ntlmv2()
/linux/lib/crypto/
H A Dmd5.c290 hmac_md5_update(&ctx, data, data_len); in hmac_md5()
302 hmac_md5_update(&ctx, data, data_len); in hmac_md5_usingrawkey()
/linux/crypto/
H A Dmd5.c134 hmac_md5_update(HMAC_MD5_CTX(desc), data, len); in crypto_hmac_md5_update()