Home
last modified time | relevance | path

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

/external/wpa_supplicant_8/src/crypto/
Dcrypto_linux.c402 static void linux_af_alg_skcipher_deinit(struct linux_af_alg_skcipher *skcipher) in linux_af_alg_skcipher_deinit() argument
404 if (!skcipher) in linux_af_alg_skcipher_deinit()
406 if (skcipher->s >= 0) in linux_af_alg_skcipher_deinit()
407 close(skcipher->s); in linux_af_alg_skcipher_deinit()
408 if (skcipher->t >= 0) in linux_af_alg_skcipher_deinit()
409 close(skcipher->t); in linux_af_alg_skcipher_deinit()
410 os_free(skcipher); in linux_af_alg_skcipher_deinit()
417 struct linux_af_alg_skcipher *skcipher; in linux_af_alg_skcipher() local
419 skcipher = os_zalloc(sizeof(*skcipher)); in linux_af_alg_skcipher()
420 if (!skcipher) in linux_af_alg_skcipher()
[all …]
/external/python/cpython3/Modules/
D_ssl.c1889 const char *skcipher = NULL, *digest = NULL, *kx = NULL, *auth = NULL; in cipher_to_dict() local
1906 skcipher = nid != NID_undef ? OBJ_nid2ln(nid) : NULL; in cipher_to_dict()
1929 "symmetric", skcipher, in cipher_to_dict()
/external/python/cpython3/Doc/library/
Dsocket.rst157 ``skcipher`` or ``rng``.