Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/clinic/
Dsha1module.c.h15 SHA1Type_copy_impl(SHA1object *self);
18 SHA1Type_copy(SHA1object *self, PyObject *Py_UNUSED(ignored)) in SHA1Type_copy()
33 SHA1Type_digest_impl(SHA1object *self);
36 SHA1Type_digest(SHA1object *self, PyObject *Py_UNUSED(ignored)) in SHA1Type_digest()
51 SHA1Type_hexdigest_impl(SHA1object *self);
54 SHA1Type_hexdigest(SHA1object *self, PyObject *Py_UNUSED(ignored)) in SHA1Type_hexdigest()
/external/python/cpython3/Modules/
Dsha1module.c55 } SHA1object; typedef
301 static SHA1object *
304 return (SHA1object *)PyObject_New(SHA1object, &SHA1type); in newSHA1object()
326 SHA1Type_copy_impl(SHA1object *self) in SHA1Type_copy_impl()
329 SHA1object *newobj; in SHA1Type_copy_impl()
345 SHA1Type_digest_impl(SHA1object *self) in SHA1Type_digest_impl()
363 SHA1Type_hexdigest_impl(SHA1object *self) in SHA1Type_hexdigest_impl()
386 SHA1Type_update(SHA1object *self, PyObject *obj) in SHA1Type_update()
446 sizeof(SHA1object), /*tp_size*/
492 SHA1object *new; in _sha1_sha1_impl()