Lines Matching defs:module
1 /* SHA3 module
3 * This module provides an interface to the SHA3 algorithm
5 * See below for information about the original code this module was
52 sha3_get_state(PyObject *module)
54 void *state = PyModule_GetState(module);
60 module _sha3
574 _sha3_traverse(PyObject *module, visitproc visit, void *arg)
576 SHA3State *state = sha3_get_state(module);
587 _sha3_clear(PyObject *module)
589 SHA3State *state = sha3_get_state(module);
600 _sha3_free(void *module)
602 _sha3_clear((PyObject *)module);
646 /* Initialize this module. */