| 6037 | } |
| 6038 | |
| 6039 | static PyObject *Sha256_reset(PyObject *self_obj, PyObject *noargs) { |
| 6040 | sz_unused_(noargs); |
| 6041 | Sha256 *self = (Sha256 *)self_obj; |
| 6042 | sz_sha256_state_init(&self->state); |
| 6043 | Py_INCREF(self_obj); |
| 6044 | return self_obj; |
| 6045 | } |
| 6046 | |
| 6047 | static PyObject *Sha256_copy(PyObject *self_obj, PyObject *noargs) { |
| 6048 | sz_unused_(noargs); |
nothing calls this directly
no test coverage detected
searching dependent graphs…