Lines Matching defs:self
52 "copy($self, /)\n"
61 _sha3_sha3_224_copy_impl(SHA3object *self);
64 _sha3_sha3_224_copy(SHA3object *self, PyObject *Py_UNUSED(ignored))
66 return _sha3_sha3_224_copy_impl(self);
70 "digest($self, /)\n"
79 _sha3_sha3_224_digest_impl(SHA3object *self);
82 _sha3_sha3_224_digest(SHA3object *self, PyObject *Py_UNUSED(ignored))
84 return _sha3_sha3_224_digest_impl(self);
88 "hexdigest($self, /)\n"
97 _sha3_sha3_224_hexdigest_impl(SHA3object *self);
100 _sha3_sha3_224_hexdigest(SHA3object *self, PyObject *Py_UNUSED(ignored))
102 return _sha3_sha3_224_hexdigest_impl(self);
106 "update($self, data, /)\n"
115 "digest($self, length, /)\n"
124 _sha3_shake_128_digest_impl(SHA3object *self, unsigned long length);
127 _sha3_shake_128_digest(SHA3object *self, PyObject *arg)
135 return_value = _sha3_shake_128_digest_impl(self, length);
142 "hexdigest($self, length, /)\n"
151 _sha3_shake_128_hexdigest_impl(SHA3object *self, unsigned long length);
154 _sha3_shake_128_hexdigest(SHA3object *self, PyObject *arg)
162 return_value = _sha3_shake_128_hexdigest_impl(self, length);