Lines Matching defs:digest
24 "digest($self, /)\n"
27 "Return the digest value as a bytes object.");
30 {"digest", (PyCFunction)EVP_digest, METH_NOARGS, EVP_digest__doc__},
45 "Return the digest value as a string of hexadecimal digits.");
71 "digest($self, /, length)\n"
74 "Return the digest value as a bytes object.");
77 {"digest", _PyCFunction_CAST(EVPXOF_digest), METH_FASTCALL|METH_KEYWORDS, EVPXOF_digest__doc__},
87 static _PyArg_Parser _parser = {NULL, _keywords, "digest", 0};
121 "Return the digest value as a string of hexadecimal digits.");
1074 "hmac_digest($module, /, key, msg, digest)\n"
1084 Py_buffer *msg, PyObject *digest);
1090 static const char * const _keywords[] = {"key", "msg", "digest", NULL};
1095 PyObject *digest;
1115 digest = args[2];
1116 return_value = _hashlib_hmac_singleshot_impl(module, &key, &msg, digest);
1240 "digest($self, /)\n"
1243 "Return the digest of the bytes passed to the update() method so far.");
1246 {"digest", (PyCFunction)_hashlib_HMAC_digest, METH_NOARGS, _hashlib_HMAC_digest__doc__},
1261 "Return hexadecimal digest of the bytes passed to the update() method so far.\n"