Home
last modified time | relevance | path

Searched refs:hmacmd5 (Results 1 – 2 of 2) sorted by relevance

/fs/cifs/
Dcifsencrypt.c504 rc = crypto_shash_setkey(ses->server->secmech.hmacmd5, nt_hash, in calc_ntlmv2_hash()
606 rc = crypto_shash_setkey(ses->server->secmech.hmacmd5, in CalcNTLMv2_response()
651 server->secmech.hmacmd5 = crypto_alloc_shash("hmac(md5)", 0, 0); in crypto_hmacmd5_alloc()
652 if (IS_ERR(server->secmech.hmacmd5)) { in crypto_hmacmd5_alloc()
654 rc = PTR_ERR(server->secmech.hmacmd5); in crypto_hmacmd5_alloc()
655 server->secmech.hmacmd5 = NULL; in crypto_hmacmd5_alloc()
660 crypto_shash_descsize(server->secmech.hmacmd5); in crypto_hmacmd5_alloc()
663 crypto_free_shash(server->secmech.hmacmd5); in crypto_hmacmd5_alloc()
664 server->secmech.hmacmd5 = NULL; in crypto_hmacmd5_alloc()
667 server->secmech.sdeschmacmd5->shash.tfm = server->secmech.hmacmd5; in crypto_hmacmd5_alloc()
[all …]
Dcifsglob.h117 struct crypto_shash *hmacmd5; /* hmac-md5 hash function */ member