Home
last modified time | relevance | path

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

/linux-4.19.296/crypto/
Ddrbg.c1643 struct sdesc { struct
1650 struct sdesc *sdesc; in drbg_init_hash_kernel() argument
1660 sdesc = kzalloc(sizeof(struct shash_desc) + crypto_shash_descsize(tfm), in drbg_init_hash_kernel()
1662 if (!sdesc) { in drbg_init_hash_kernel()
1667 sdesc->shash.tfm = tfm; in drbg_init_hash_kernel()
1668 sdesc->shash.flags = 0; in drbg_init_hash_kernel()
1669 drbg->priv_data = sdesc; in drbg_init_hash_kernel()
1676 struct sdesc *sdesc = (struct sdesc *)drbg->priv_data; in drbg_fini_hash_kernel() local
1677 if (sdesc) { in drbg_fini_hash_kernel()
1678 crypto_free_shash(sdesc->shash.tfm); in drbg_fini_hash_kernel()
[all …]
/linux-4.19.296/fs/cifs/
Dmisc.c883 struct crypto_shash **shash, struct sdesc **sdesc) in cifs_alloc_hash() argument
888 if (*sdesc != NULL) in cifs_alloc_hash()
896 *sdesc = NULL; in cifs_alloc_hash()
901 *sdesc = kmalloc(size, GFP_KERNEL); in cifs_alloc_hash()
902 if (*sdesc == NULL) { in cifs_alloc_hash()
909 (*sdesc)->shash.tfm = *shash; in cifs_alloc_hash()
910 (*sdesc)->shash.flags = 0x0; in cifs_alloc_hash()
920 cifs_free_hash(struct crypto_shash **shash, struct sdesc **sdesc) in cifs_free_hash() argument
922 kfree(*sdesc); in cifs_free_hash()
923 *sdesc = NULL; in cifs_free_hash()
Dcifsproto.h560 struct sdesc **sdesc);
561 void cifs_free_hash(struct crypto_shash **shash, struct sdesc **sdesc);
Dcifsglob.h128 struct sdesc { struct
140 struct sdesc *sdeschmacmd5; /* ctxt to generate ntlmv2 hash, CR1 */ argument
141 struct sdesc *sdescmd5; /* ctxt to generate cifs/smb signature */
142 struct sdesc *sdeschmacsha256; /* ctxt to generate smb2 signature */
143 struct sdesc *sdesccmacaes; /* ctxt to generate smb3 signature */
144 struct sdesc *sdescsha512; /* ctxt to generate smb3.11 signing key */
Dsmbencrypt.c125 struct sdesc *sdescmd4 = NULL; in mdfour()
Dlink.c54 struct sdesc *sdescmd5 = NULL; in symlink_hash()
Dsmb2misc.c832 struct sdesc *d; in smb311_update_preauth_hash()
/linux-4.19.296/include/linux/platform_data/media/
Dsoc_camera_platform.h46 if (&icd->sdesc->subdev_desc != ssdd) in soc_camera_platform_add()
77 if (&icd->sdesc->subdev_desc != ssdd || !pdev) in soc_camera_platform_del()
/linux-4.19.296/include/media/
Dsoc_camera.h31 struct soc_camera_desc *sdesc; member
256 return icd->sdesc; in to_soc_camera_desc()