| 5929 | } |
| 5930 | |
| 5931 | static PyObject *Hasher_digest(PyObject *self_obj, PyObject *noargs) { |
| 5932 | sz_unused_(noargs); |
| 5933 | Hasher *self = (Hasher *)self_obj; |
| 5934 | sz_u64_t hash = sz_hash_state_digest(&self->state); |
| 5935 | return PyLong_FromUnsignedLongLong((unsigned long long)hash); |
| 5936 | } |
| 5937 | |
| 5938 | static PyObject *Hasher_hexdigest(PyObject *self_obj, PyObject *noargs) { |
| 5939 | sz_unused_(noargs); |
nothing calls this directly
no test coverage detected
searching dependent graphs…