Searched refs:out_cd (Results 1 – 2 of 2) sorted by relevance
/illumos-gate/usr/src/uts/common/fs/smbsrv/ |
H A D | smb3_encrypt_kcf.c | 147 crypto_data_t in_cd, out_cd; in smb3_encrypt_uio() local 155 bzero(&out_cd, sizeof (crypto_data_t)); in smb3_encrypt_uio() 156 out_cd.cd_format = CRYPTO_DATA_UIO; in smb3_encrypt_uio() 157 out_cd.cd_length = out_uio->uio_resid; in smb3_encrypt_uio() 158 out_cd.cd_uio = out_uio; in smb3_encrypt_uio() 161 &ctxp->ckey, tmpl, &out_cd, NULL); in smb3_encrypt_uio() 177 crypto_data_t in_cd, out_cd; in smb3_decrypt_uio() local 187 bzero(&out_cd, sizeof (crypto_data_t)); in smb3_decrypt_uio() 188 out_cd.cd_format = CRYPTO_DATA_UIO; in smb3_decrypt_uio() 189 out_cd.cd_length = out_uio->uio_resid; in smb3_decrypt_uio() [all …]
|
/illumos-gate/usr/src/uts/common/fs/smbclnt/netsmb/ |
H A D | nsmb_crypt_kcf.c | 155 crypto_data_t in_cd, out_cd; in nsmb_encrypt_mblks() local 168 bzero(&out_cd, sizeof (crypto_data_t)); in nsmb_encrypt_mblks() 169 out_cd.cd_format = CRYPTO_DATA_MBLK; in nsmb_encrypt_mblks() 170 out_cd.cd_length = outlen; in nsmb_encrypt_mblks() 171 out_cd.cd_mp = mp; in nsmb_encrypt_mblks() 174 &ctxp->ckey, NULL, &out_cd, NULL); in nsmb_encrypt_mblks() 189 crypto_data_t in_cd, out_cd; in nsmb_decrypt_mblks() local 206 bzero(&out_cd, sizeof (crypto_data_t)); in nsmb_decrypt_mblks() 207 out_cd.cd_format = CRYPTO_DATA_MBLK; in nsmb_decrypt_mblks() 208 out_cd.cd_length = outlen; in nsmb_decrypt_mblks() [all …]
|