Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
Dsha256module.c377 static PyTypeObject SHA224type; variable
384 return (SHAobject *)PyObject_New(SHAobject, &SHA224type); in newSHA224object()
529 static PyTypeObject SHA224type = { variable
712 Py_TYPE(&SHA224type) = &PyType_Type; in PyInit__sha256()
713 if (PyType_Ready(&SHA224type) < 0) in PyInit__sha256()
723 Py_INCREF((PyObject *)&SHA224type); in PyInit__sha256()
724 PyModule_AddObject(m, "SHA224Type", (PyObject *)&SHA224type); in PyInit__sha256()
/external/python/cpython2/Modules/
Dsha256module.c378 static PyTypeObject SHA224type; variable
385 return (SHAobject *)PyObject_New(SHAobject, &SHA224type); in newSHA224object()
537 static PyTypeObject SHA224type = { variable
697 Py_TYPE(&SHA224type) = &PyType_Type; in init_sha256()
698 if (PyType_Ready(&SHA224type) < 0) in init_sha256()