Home
last modified time | relevance | path

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

/linux-3.4.99/fs/cifs/
Dsmbencrypt.c72 struct crypto_blkcipher *tfm_des; in smbhash() local
78 tfm_des = crypto_alloc_blkcipher("ecb(des)", 0, CRYPTO_ALG_ASYNC); in smbhash()
79 if (IS_ERR(tfm_des)) { in smbhash()
80 rc = PTR_ERR(tfm_des); in smbhash()
85 desc.tfm = tfm_des; in smbhash()
87 crypto_blkcipher_setkey(tfm_des, key2, 8); in smbhash()
96 crypto_free_blkcipher(tfm_des); in smbhash()