Home
last modified time | relevance | path

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

/third_party/python/Modules/clinic/
Dsha1module.c.h15 SHA1Type_copy_impl(SHA1object *self, PyTypeObject *cls);
18 SHA1Type_copy(SHA1object *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObjec… in SHA1Type_copy()
44 SHA1Type_digest_impl(SHA1object *self);
47 SHA1Type_digest(SHA1object *self, PyObject *Py_UNUSED(ignored)) in SHA1Type_digest()
62 SHA1Type_hexdigest_impl(SHA1object *self);
65 SHA1Type_hexdigest(SHA1object *self, PyObject *Py_UNUSED(ignored)) in SHA1Type_hexdigest()
/third_party/python/Modules/
Dsha1module.c55 } SHA1object; typedef
310 static SHA1object *
313 SHA1object *sha = (SHA1object *)PyObject_GC_New(SHA1object, st->sha1_type); in newSHA1object()
348 SHA1Type_copy_impl(SHA1object *self, PyTypeObject *cls) in SHA1Type_copy_impl()
353 SHA1object *newobj; in SHA1Type_copy_impl()
368 SHA1Type_digest_impl(SHA1object *self) in SHA1Type_digest_impl()
386 SHA1Type_hexdigest_impl(SHA1object *self) in SHA1Type_hexdigest_impl()
409 SHA1Type_update(SHA1object *self, PyObject *obj) in SHA1Type_update()
474 .basicsize = sizeof(SHA1object),
496 SHA1object *new; in _sha1_sha1_impl()