Home
last modified time | relevance | path

Searched refs:SHAobject (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Modules/
Dsha256module.c54 } SHAobject; typedef
76 static void SHAcopy(SHAobject *src, SHAobject *dest) in SHAcopy()
126 sha_transform(SHAobject *sha_info) in sha_transform()
229 sha_init(SHAobject *sha_info) in sha_init()
246 sha224_init(SHAobject *sha_info) in sha224_init()
266 sha_update(SHAobject *sha_info, SHA_BYTE *buffer, Py_ssize_t count) in sha_update()
306 sha_final(unsigned char digest[SHA_DIGESTSIZE], SHAobject *sha_info) in sha_final()
381 static SHAobject *
384 return (SHAobject *)PyObject_New(SHAobject, &SHA224type); in newSHA224object()
387 static SHAobject *
[all …]
Dsha512module.c55 } SHAobject; typedef
85 static void SHAcopy(SHAobject *src, SHAobject *dest) in SHAcopy()
135 sha512_transform(SHAobject *sha_info) in sha512_transform()
254 sha512_init(SHAobject *sha_info) in sha512_init()
271 sha384_init(SHAobject *sha_info) in sha384_init()
291 sha512_update(SHAobject *sha_info, SHA_BYTE *buffer, Py_ssize_t count) in sha512_update()
331 sha512_final(unsigned char digest[SHA_DIGESTSIZE], SHAobject *sha_info) in sha512_final()
446 static SHAobject *
449 return (SHAobject *)PyObject_New(SHAobject, &SHA384type); in newSHA384object()
452 static SHAobject *
[all …]
/external/python/cpython2/Modules/
Dsha256module.c55 } SHAobject; typedef
76 static void SHAcopy(SHAobject *src, SHAobject *dest) in SHAcopy()
127 sha_transform(SHAobject *sha_info) in sha_transform()
228 sha_init(SHAobject *sha_info) in sha_init()
246 sha224_init(SHAobject *sha_info) in sha224_init()
267 sha_update(SHAobject *sha_info, SHA_BYTE *buffer, int count) in sha_update()
307 sha_final(unsigned char digest[SHA_DIGESTSIZE], SHAobject *sha_info) in sha_final()
382 static SHAobject *
385 return (SHAobject *)PyObject_New(SHAobject, &SHA224type); in newSHA224object()
388 static SHAobject *
[all …]
Dshamodule.c53 } SHAobject; typedef
74 static void SHAcopy(SHAobject *src, SHAobject *dest) in SHAcopy()
161 sha_transform(SHAobject *sha_info) in sha_transform()
222 sha_init(SHAobject *sha_info) in sha_init()
239 sha_update(SHAobject *sha_info, SHA_BYTE *buffer, unsigned int count) in sha_update()
279 sha_final(unsigned char digest[20], SHAobject *sha_info) in sha_final()
341 static SHAobject *
344 return (SHAobject *)PyObject_New(SHAobject, &SHAtype); in newSHAobject()
361 SHA_copy(SHAobject *self, PyObject *unused) in SHA_copy()
363 SHAobject *newobj; in SHA_copy()
[all …]
Dsha512module.c57 } SHAobject; typedef
86 static void SHAcopy(SHAobject *src, SHAobject *dest) in SHAcopy()
137 sha512_transform(SHAobject *sha_info) in sha512_transform()
254 sha512_init(SHAobject *sha_info) in sha512_init()
272 sha384_init(SHAobject *sha_info) in sha384_init()
293 sha512_update(SHAobject *sha_info, SHA_BYTE *buffer, int count) in sha512_update()
333 sha512_final(unsigned char digest[SHA_DIGESTSIZE], SHAobject *sha_info) in sha512_final()
448 static SHAobject *
451 return (SHAobject *)PyObject_New(SHAobject, &SHA384type); in newSHA384object()
454 static SHAobject *
[all …]
/external/python/cpython3/Modules/clinic/
Dsha256module.c.h15 SHA256Type_copy_impl(SHAobject *self);
18 SHA256Type_copy(SHAobject *self, PyObject *Py_UNUSED(ignored)) in SHA256Type_copy()
33 SHA256Type_digest_impl(SHAobject *self);
36 SHA256Type_digest(SHAobject *self, PyObject *Py_UNUSED(ignored)) in SHA256Type_digest()
51 SHA256Type_hexdigest_impl(SHAobject *self);
54 SHA256Type_hexdigest(SHAobject *self, PyObject *Py_UNUSED(ignored)) in SHA256Type_hexdigest()
Dsha512module.c.h15 SHA512Type_copy_impl(SHAobject *self);
18 SHA512Type_copy(SHAobject *self, PyObject *Py_UNUSED(ignored)) in SHA512Type_copy()
33 SHA512Type_digest_impl(SHAobject *self);
36 SHA512Type_digest(SHAobject *self, PyObject *Py_UNUSED(ignored)) in SHA512Type_digest()
51 SHA512Type_hexdigest_impl(SHAobject *self);
54 SHA512Type_hexdigest(SHAobject *self, PyObject *Py_UNUSED(ignored)) in SHA512Type_hexdigest()