Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_cryptmodule.c37 char *crypt_result; in crypt_crypt_impl() local
41 crypt_result = crypt_r(word, salt, &data); in crypt_crypt_impl()
43 crypt_result = crypt(word, salt); in crypt_crypt_impl()
45 return Py_BuildValue("s", crypt_result); in crypt_crypt_impl()