Lines Matching defs:word
6 "crypt($module, word, salt, /)\n"
9 "Hash a *word* with the given *salt* and return the hashed password.\n"
11 "*word* will usually be a user\'s password. *salt* (either a random 2 or 16\n"
14 "results for a given *word*.");
20 crypt_crypt_impl(PyObject *module, const char *word, const char *salt);
26 const char *word;
37 word = PyUnicode_AsUTF8AndSize(args[0], &word_length);
38 if (word == NULL) {
41 if (strlen(word) != (size_t)word_length) {
58 return_value = crypt_crypt_impl(module, word, salt);