Home
last modified time | relevance | path

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

/linux-6.6.21/security/keys/
Ddh.c124 struct keyctl_kdf_params *kdfcopy) in __keyctl_dh_compute() argument
149 if (kdfcopy) { in __keyctl_dh_compute()
152 if (memchr_inv(kdfcopy->__spare, 0, sizeof(kdfcopy->__spare))) { in __keyctl_dh_compute()
158 kdfcopy->otherinfolen > KEYCTL_KDF_MAX_OI_LEN) { in __keyctl_dh_compute()
164 hashname = strndup_user(kdfcopy->hashname, CRYPTO_MAX_ALG_NAME); in __keyctl_dh_compute()
222 if (!kdfcopy) { in __keyctl_dh_compute()
236 outbuf = kzalloc(kdfcopy ? (outlen + kdfcopy->otherinfolen) : outlen, in __keyctl_dh_compute()
266 if (kdfcopy) { in __keyctl_dh_compute()
271 if (copy_from_user(outbuf + req->dst_len, kdfcopy->otherinfo, in __keyctl_dh_compute()
272 kdfcopy->otherinfolen) != 0) { in __keyctl_dh_compute()
[all …]
Dcompat_dh.c20 struct keyctl_kdf_params kdfcopy; in compat_keyctl_dh_compute() local
29 kdfcopy.hashname = compat_ptr(compat_kdfcopy.hashname); in compat_keyctl_dh_compute()
30 kdfcopy.otherinfo = compat_ptr(compat_kdfcopy.otherinfo); in compat_keyctl_dh_compute()
31 kdfcopy.otherinfolen = compat_kdfcopy.otherinfolen; in compat_keyctl_dh_compute()
32 memcpy(kdfcopy.__spare, compat_kdfcopy.__spare, in compat_keyctl_dh_compute()
33 sizeof(kdfcopy.__spare)); in compat_keyctl_dh_compute()
35 return __keyctl_dh_compute(params, buffer, buflen, &kdfcopy); in compat_keyctl_dh_compute()