chiark
/
gitweb
/
~mdw
/
catacomb-python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0b7c311
)
algorithms.c (KECCAK.extract): Fix method name in keyword-args string.
author
Mark Wooding
<mdw@distorted.org.uk>
Mon, 14 Oct 2019 00:00:20 +0000
(
01:00
+0100)
committer
Mark Wooding
<mdw@distorted.org.uk>
Fri, 22 Nov 2019 22:18:12 +0000
(22:18 +0000)
algorithms.c
patch
|
blob
|
blame
|
history
diff --git
a/algorithms.c
b/algorithms.c
index dcfb22d9e287cb0d4da54cc1c1db21ebab9a6a81..24ebd748af9cbc58a562875f9885c8c61d3200e5 100644
(file)
--- a/
algorithms.c
+++ b/
algorithms.c
@@
-1645,7
+1645,7
@@
static PyObject *kxvikmeth_extract(PyObject *me, PyObject *arg)
unsigned i;
unsigned n;
- if (!PyArg_ParseTuple(arg, "O&:
mix
", convuint, &n)) goto end;
+ if (!PyArg_ParseTuple(arg, "O&:
extract
", convuint, &n)) goto end;
if (n > 200) VALERR("out of range");
rc = bytestring_pywrap(0, n);
q = (octet *)PyString_AS_STRING(rc);