Lines Matching defs:self

6 "copy($self, /)\n"
15 EVP_copy_impl(EVPobject *self);
18 EVP_copy(EVPobject *self, PyObject *Py_UNUSED(ignored))
20 return EVP_copy_impl(self);
24 "digest($self, /)\n"
33 EVP_digest_impl(EVPobject *self);
36 EVP_digest(EVPobject *self, PyObject *Py_UNUSED(ignored))
38 return EVP_digest_impl(self);
42 "hexdigest($self, /)\n"
51 EVP_hexdigest_impl(EVPobject *self);
54 EVP_hexdigest(EVPobject *self, PyObject *Py_UNUSED(ignored))
56 return EVP_hexdigest_impl(self);
60 "update($self, obj, /)\n"
71 "digest($self, /, length)\n"
80 EVPXOF_digest_impl(EVPobject *self, Py_ssize_t length);
83 EVPXOF_digest(EVPobject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
107 return_value = EVPXOF_digest_impl(self, length);
118 "hexdigest($self, /, length)\n"
127 EVPXOF_hexdigest_impl(EVPobject *self, Py_ssize_t length);
130 EVPXOF_hexdigest(EVPobject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
154 return_value = EVPXOF_hexdigest_impl(self, length);
1190 "copy($self, /)\n"
1199 _hashlib_HMAC_copy_impl(HMACobject *self);
1202 _hashlib_HMAC_copy(HMACobject *self, PyObject *Py_UNUSED(ignored))
1204 return _hashlib_HMAC_copy_impl(self);
1208 "update($self, /, msg)\n"
1217 _hashlib_HMAC_update_impl(HMACobject *self, PyObject *msg);
1220 _hashlib_HMAC_update(HMACobject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
1233 return_value = _hashlib_HMAC_update_impl(self, msg);
1240 "digest($self, /)\n"
1249 _hashlib_HMAC_digest_impl(HMACobject *self);
1252 _hashlib_HMAC_digest(HMACobject *self, PyObject *Py_UNUSED(ignored))
1254 return _hashlib_HMAC_digest_impl(self);
1258 "hexdigest($self, /)\n"
1270 _hashlib_HMAC_hexdigest_impl(HMACobject *self);
1273 _hashlib_HMAC_hexdigest(HMACobject *self, PyObject *Py_UNUSED(ignored))
1275 return _hashlib_HMAC_hexdigest_impl(self);