Home
last modified time | relevance | path

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

/fs/cifs/
Dcifsencrypt.c518 rc = crypto_shash_setkey(ses->server->secmech.hmacmd5, nt_hash, in calc_ntlmv2_hash()
621 rc = crypto_shash_setkey(ses->server->secmech.hmacmd5, in CalcNTLMv2_response()
666 server->secmech.hmacmd5 = crypto_alloc_shash("hmac(md5)", 0, 0); in crypto_hmacmd5_alloc()
667 if (IS_ERR(server->secmech.hmacmd5)) { in crypto_hmacmd5_alloc()
669 rc = PTR_ERR(server->secmech.hmacmd5); in crypto_hmacmd5_alloc()
670 server->secmech.hmacmd5 = NULL; in crypto_hmacmd5_alloc()
675 crypto_shash_descsize(server->secmech.hmacmd5); in crypto_hmacmd5_alloc()
678 crypto_free_shash(server->secmech.hmacmd5); in crypto_hmacmd5_alloc()
679 server->secmech.hmacmd5 = NULL; in crypto_hmacmd5_alloc()
682 server->secmech.sdeschmacmd5->shash.tfm = server->secmech.hmacmd5; in crypto_hmacmd5_alloc()
[all …]
Dcifsglob.h131 struct crypto_shash *hmacmd5; /* hmac-md5 hash function */ member