Home
last modified time | relevance | path

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

/third_party/python/Modules/clinic/
Dmd5module.c.h15 MD5Type_copy_impl(MD5object *self, PyTypeObject *cls);
18 MD5Type_copy(MD5object *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject … in MD5Type_copy()
44 MD5Type_digest_impl(MD5object *self);
47 MD5Type_digest(MD5object *self, PyObject *Py_UNUSED(ignored)) in MD5Type_digest()
62 MD5Type_hexdigest_impl(MD5object *self);
65 MD5Type_hexdigest(MD5object *self, PyObject *Py_UNUSED(ignored)) in MD5Type_hexdigest()
/third_party/python/Modules/
Dmd5module.c55 } MD5object; typedef
333 static MD5object *
336 MD5object *md5 = (MD5object *)PyObject_GC_New(MD5object, st->md5_type); in newMD5object()
370 MD5Type_copy_impl(MD5object *self, PyTypeObject *cls) in MD5Type_copy_impl()
375 MD5object *newobj; in MD5Type_copy_impl()
390 MD5Type_digest_impl(MD5object *self) in MD5Type_digest_impl()
408 MD5Type_hexdigest_impl(MD5object *self) in MD5Type_hexdigest_impl()
431 MD5Type_update(MD5object *self, PyObject *obj) in MD5Type_update()
496 .basicsize = sizeof(MD5object),
518 MD5object *new; in _md5_md5_impl()