summaryrefslogtreecommitdiffstats
path: root/contrib/tools/python3/src/Modules/_blake2/clinic
diff options
context:
space:
mode:
authororivej <[email protected]>2022-02-10 16:45:01 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:45:01 +0300
commit2d37894b1b037cf24231090eda8589bbb44fb6fc (patch)
treebe835aa92c6248212e705f25388ebafcf84bc7a1 /contrib/tools/python3/src/Modules/_blake2/clinic
parent718c552901d703c502ccbefdfc3c9028d608b947 (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'contrib/tools/python3/src/Modules/_blake2/clinic')
-rw-r--r--contrib/tools/python3/src/Modules/_blake2/clinic/blake2b_impl.c.h224
-rw-r--r--contrib/tools/python3/src/Modules/_blake2/clinic/blake2s_impl.c.h224
2 files changed, 224 insertions, 224 deletions
diff --git a/contrib/tools/python3/src/Modules/_blake2/clinic/blake2b_impl.c.h b/contrib/tools/python3/src/Modules/_blake2/clinic/blake2b_impl.c.h
index 0133a5e3d45..07258c31c9b 100644
--- a/contrib/tools/python3/src/Modules/_blake2/clinic/blake2b_impl.c.h
+++ b/contrib/tools/python3/src/Modules/_blake2/clinic/blake2b_impl.c.h
@@ -1,51 +1,51 @@
-/*[clinic input]
-preserve
-[clinic start generated code]*/
-
-PyDoc_STRVAR(py_blake2b_new__doc__,
-"blake2b(data=b\'\', /, *, digest_size=_blake2.blake2b.MAX_DIGEST_SIZE,\n"
-" key=b\'\', salt=b\'\', person=b\'\', fanout=1, depth=1, leaf_size=0,\n"
+/*[clinic input]
+preserve
+[clinic start generated code]*/
+
+PyDoc_STRVAR(py_blake2b_new__doc__,
+"blake2b(data=b\'\', /, *, digest_size=_blake2.blake2b.MAX_DIGEST_SIZE,\n"
+" key=b\'\', salt=b\'\', person=b\'\', fanout=1, depth=1, leaf_size=0,\n"
" node_offset=0, node_depth=0, inner_size=0, last_node=False,\n"
" usedforsecurity=True)\n"
-"--\n"
-"\n"
-"Return a new BLAKE2b hash object.");
-
-static PyObject *
-py_blake2b_new_impl(PyTypeObject *type, PyObject *data, int digest_size,
- Py_buffer *key, Py_buffer *salt, Py_buffer *person,
+"--\n"
+"\n"
+"Return a new BLAKE2b hash object.");
+
+static PyObject *
+py_blake2b_new_impl(PyTypeObject *type, PyObject *data, int digest_size,
+ Py_buffer *key, Py_buffer *salt, Py_buffer *person,
int fanout, int depth, unsigned long leaf_size,
unsigned long long node_offset, int node_depth,
int inner_size, int last_node, int usedforsecurity);
-
-static PyObject *
-py_blake2b_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
-{
- PyObject *return_value = NULL;
+
+static PyObject *
+py_blake2b_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
+{
+ PyObject *return_value = NULL;
static const char * const _keywords[] = {"", "digest_size", "key", "salt", "person", "fanout", "depth", "leaf_size", "node_offset", "node_depth", "inner_size", "last_node", "usedforsecurity", NULL};
static _PyArg_Parser _parser = {NULL, _keywords, "blake2b", 0};
PyObject *argsbuf[13];
PyObject * const *fastargs;
Py_ssize_t nargs = PyTuple_GET_SIZE(args);
Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0;
- PyObject *data = NULL;
- int digest_size = BLAKE2B_OUTBYTES;
- Py_buffer key = {NULL, NULL};
- Py_buffer salt = {NULL, NULL};
- Py_buffer person = {NULL, NULL};
- int fanout = 1;
- int depth = 1;
+ PyObject *data = NULL;
+ int digest_size = BLAKE2B_OUTBYTES;
+ Py_buffer key = {NULL, NULL};
+ Py_buffer salt = {NULL, NULL};
+ Py_buffer person = {NULL, NULL};
+ int fanout = 1;
+ int depth = 1;
unsigned long leaf_size = 0;
unsigned long long node_offset = 0;
- int node_depth = 0;
- int inner_size = 0;
- int last_node = 0;
+ int node_depth = 0;
+ int inner_size = 0;
+ int last_node = 0;
int usedforsecurity = 1;
-
+
fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 0, 1, 0, argsbuf);
if (!fastargs) {
- goto exit;
- }
+ goto exit;
+ }
if (nargs < 1) {
goto skip_optional_posonly;
}
@@ -192,84 +192,84 @@ skip_optional_posonly:
}
skip_optional_kwonly:
return_value = py_blake2b_new_impl(type, data, digest_size, &key, &salt, &person, fanout, depth, leaf_size, node_offset, node_depth, inner_size, last_node, usedforsecurity);
-
-exit:
- /* Cleanup for key */
- if (key.obj) {
- PyBuffer_Release(&key);
- }
- /* Cleanup for salt */
- if (salt.obj) {
- PyBuffer_Release(&salt);
- }
- /* Cleanup for person */
- if (person.obj) {
- PyBuffer_Release(&person);
- }
-
- return return_value;
-}
-
-PyDoc_STRVAR(_blake2_blake2b_copy__doc__,
-"copy($self, /)\n"
-"--\n"
-"\n"
-"Return a copy of the hash object.");
-
-#define _BLAKE2_BLAKE2B_COPY_METHODDEF \
- {"copy", (PyCFunction)_blake2_blake2b_copy, METH_NOARGS, _blake2_blake2b_copy__doc__},
-
-static PyObject *
-_blake2_blake2b_copy_impl(BLAKE2bObject *self);
-
-static PyObject *
-_blake2_blake2b_copy(BLAKE2bObject *self, PyObject *Py_UNUSED(ignored))
-{
- return _blake2_blake2b_copy_impl(self);
-}
-
-PyDoc_STRVAR(_blake2_blake2b_update__doc__,
-"update($self, data, /)\n"
-"--\n"
-"\n"
-"Update this hash object\'s state with the provided bytes-like object.");
-
-#define _BLAKE2_BLAKE2B_UPDATE_METHODDEF \
- {"update", (PyCFunction)_blake2_blake2b_update, METH_O, _blake2_blake2b_update__doc__},
-
-PyDoc_STRVAR(_blake2_blake2b_digest__doc__,
-"digest($self, /)\n"
-"--\n"
-"\n"
-"Return the digest value as a bytes object.");
-
-#define _BLAKE2_BLAKE2B_DIGEST_METHODDEF \
- {"digest", (PyCFunction)_blake2_blake2b_digest, METH_NOARGS, _blake2_blake2b_digest__doc__},
-
-static PyObject *
-_blake2_blake2b_digest_impl(BLAKE2bObject *self);
-
-static PyObject *
-_blake2_blake2b_digest(BLAKE2bObject *self, PyObject *Py_UNUSED(ignored))
-{
- return _blake2_blake2b_digest_impl(self);
-}
-
-PyDoc_STRVAR(_blake2_blake2b_hexdigest__doc__,
-"hexdigest($self, /)\n"
-"--\n"
-"\n"
-"Return the digest value as a string of hexadecimal digits.");
-
-#define _BLAKE2_BLAKE2B_HEXDIGEST_METHODDEF \
- {"hexdigest", (PyCFunction)_blake2_blake2b_hexdigest, METH_NOARGS, _blake2_blake2b_hexdigest__doc__},
-
-static PyObject *
-_blake2_blake2b_hexdigest_impl(BLAKE2bObject *self);
-
-static PyObject *
-_blake2_blake2b_hexdigest(BLAKE2bObject *self, PyObject *Py_UNUSED(ignored))
-{
- return _blake2_blake2b_hexdigest_impl(self);
-}
+
+exit:
+ /* Cleanup for key */
+ if (key.obj) {
+ PyBuffer_Release(&key);
+ }
+ /* Cleanup for salt */
+ if (salt.obj) {
+ PyBuffer_Release(&salt);
+ }
+ /* Cleanup for person */
+ if (person.obj) {
+ PyBuffer_Release(&person);
+ }
+
+ return return_value;
+}
+
+PyDoc_STRVAR(_blake2_blake2b_copy__doc__,
+"copy($self, /)\n"
+"--\n"
+"\n"
+"Return a copy of the hash object.");
+
+#define _BLAKE2_BLAKE2B_COPY_METHODDEF \
+ {"copy", (PyCFunction)_blake2_blake2b_copy, METH_NOARGS, _blake2_blake2b_copy__doc__},
+
+static PyObject *
+_blake2_blake2b_copy_impl(BLAKE2bObject *self);
+
+static PyObject *
+_blake2_blake2b_copy(BLAKE2bObject *self, PyObject *Py_UNUSED(ignored))
+{
+ return _blake2_blake2b_copy_impl(self);
+}
+
+PyDoc_STRVAR(_blake2_blake2b_update__doc__,
+"update($self, data, /)\n"
+"--\n"
+"\n"
+"Update this hash object\'s state with the provided bytes-like object.");
+
+#define _BLAKE2_BLAKE2B_UPDATE_METHODDEF \
+ {"update", (PyCFunction)_blake2_blake2b_update, METH_O, _blake2_blake2b_update__doc__},
+
+PyDoc_STRVAR(_blake2_blake2b_digest__doc__,
+"digest($self, /)\n"
+"--\n"
+"\n"
+"Return the digest value as a bytes object.");
+
+#define _BLAKE2_BLAKE2B_DIGEST_METHODDEF \
+ {"digest", (PyCFunction)_blake2_blake2b_digest, METH_NOARGS, _blake2_blake2b_digest__doc__},
+
+static PyObject *
+_blake2_blake2b_digest_impl(BLAKE2bObject *self);
+
+static PyObject *
+_blake2_blake2b_digest(BLAKE2bObject *self, PyObject *Py_UNUSED(ignored))
+{
+ return _blake2_blake2b_digest_impl(self);
+}
+
+PyDoc_STRVAR(_blake2_blake2b_hexdigest__doc__,
+"hexdigest($self, /)\n"
+"--\n"
+"\n"
+"Return the digest value as a string of hexadecimal digits.");
+
+#define _BLAKE2_BLAKE2B_HEXDIGEST_METHODDEF \
+ {"hexdigest", (PyCFunction)_blake2_blake2b_hexdigest, METH_NOARGS, _blake2_blake2b_hexdigest__doc__},
+
+static PyObject *
+_blake2_blake2b_hexdigest_impl(BLAKE2bObject *self);
+
+static PyObject *
+_blake2_blake2b_hexdigest(BLAKE2bObject *self, PyObject *Py_UNUSED(ignored))
+{
+ return _blake2_blake2b_hexdigest_impl(self);
+}
/*[clinic end generated code: output=2d6d0fe9aa42a42a input=a9049054013a1b77]*/
diff --git a/contrib/tools/python3/src/Modules/_blake2/clinic/blake2s_impl.c.h b/contrib/tools/python3/src/Modules/_blake2/clinic/blake2s_impl.c.h
index 9e122fe6388..71c5706fb66 100644
--- a/contrib/tools/python3/src/Modules/_blake2/clinic/blake2s_impl.c.h
+++ b/contrib/tools/python3/src/Modules/_blake2/clinic/blake2s_impl.c.h
@@ -1,51 +1,51 @@
-/*[clinic input]
-preserve
-[clinic start generated code]*/
-
-PyDoc_STRVAR(py_blake2s_new__doc__,
-"blake2s(data=b\'\', /, *, digest_size=_blake2.blake2s.MAX_DIGEST_SIZE,\n"
-" key=b\'\', salt=b\'\', person=b\'\', fanout=1, depth=1, leaf_size=0,\n"
+/*[clinic input]
+preserve
+[clinic start generated code]*/
+
+PyDoc_STRVAR(py_blake2s_new__doc__,
+"blake2s(data=b\'\', /, *, digest_size=_blake2.blake2s.MAX_DIGEST_SIZE,\n"
+" key=b\'\', salt=b\'\', person=b\'\', fanout=1, depth=1, leaf_size=0,\n"
" node_offset=0, node_depth=0, inner_size=0, last_node=False,\n"
" usedforsecurity=True)\n"
-"--\n"
-"\n"
-"Return a new BLAKE2s hash object.");
-
-static PyObject *
-py_blake2s_new_impl(PyTypeObject *type, PyObject *data, int digest_size,
- Py_buffer *key, Py_buffer *salt, Py_buffer *person,
+"--\n"
+"\n"
+"Return a new BLAKE2s hash object.");
+
+static PyObject *
+py_blake2s_new_impl(PyTypeObject *type, PyObject *data, int digest_size,
+ Py_buffer *key, Py_buffer *salt, Py_buffer *person,
int fanout, int depth, unsigned long leaf_size,
unsigned long long node_offset, int node_depth,
int inner_size, int last_node, int usedforsecurity);
-
-static PyObject *
-py_blake2s_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
-{
- PyObject *return_value = NULL;
+
+static PyObject *
+py_blake2s_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
+{
+ PyObject *return_value = NULL;
static const char * const _keywords[] = {"", "digest_size", "key", "salt", "person", "fanout", "depth", "leaf_size", "node_offset", "node_depth", "inner_size", "last_node", "usedforsecurity", NULL};
static _PyArg_Parser _parser = {NULL, _keywords, "blake2s", 0};
PyObject *argsbuf[13];
PyObject * const *fastargs;
Py_ssize_t nargs = PyTuple_GET_SIZE(args);
Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0;
- PyObject *data = NULL;
- int digest_size = BLAKE2S_OUTBYTES;
- Py_buffer key = {NULL, NULL};
- Py_buffer salt = {NULL, NULL};
- Py_buffer person = {NULL, NULL};
- int fanout = 1;
- int depth = 1;
+ PyObject *data = NULL;
+ int digest_size = BLAKE2S_OUTBYTES;
+ Py_buffer key = {NULL, NULL};
+ Py_buffer salt = {NULL, NULL};
+ Py_buffer person = {NULL, NULL};
+ int fanout = 1;
+ int depth = 1;
unsigned long leaf_size = 0;
unsigned long long node_offset = 0;
- int node_depth = 0;
- int inner_size = 0;
- int last_node = 0;
+ int node_depth = 0;
+ int inner_size = 0;
+ int last_node = 0;
int usedforsecurity = 1;
-
+
fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 0, 1, 0, argsbuf);
if (!fastargs) {
- goto exit;
- }
+ goto exit;
+ }
if (nargs < 1) {
goto skip_optional_posonly;
}
@@ -192,84 +192,84 @@ skip_optional_posonly:
}
skip_optional_kwonly:
return_value = py_blake2s_new_impl(type, data, digest_size, &key, &salt, &person, fanout, depth, leaf_size, node_offset, node_depth, inner_size, last_node, usedforsecurity);
-
-exit:
- /* Cleanup for key */
- if (key.obj) {
- PyBuffer_Release(&key);
- }
- /* Cleanup for salt */
- if (salt.obj) {
- PyBuffer_Release(&salt);
- }
- /* Cleanup for person */
- if (person.obj) {
- PyBuffer_Release(&person);
- }
-
- return return_value;
-}
-
-PyDoc_STRVAR(_blake2_blake2s_copy__doc__,
-"copy($self, /)\n"
-"--\n"
-"\n"
-"Return a copy of the hash object.");
-
-#define _BLAKE2_BLAKE2S_COPY_METHODDEF \
- {"copy", (PyCFunction)_blake2_blake2s_copy, METH_NOARGS, _blake2_blake2s_copy__doc__},
-
-static PyObject *
-_blake2_blake2s_copy_impl(BLAKE2sObject *self);
-
-static PyObject *
-_blake2_blake2s_copy(BLAKE2sObject *self, PyObject *Py_UNUSED(ignored))
-{
- return _blake2_blake2s_copy_impl(self);
-}
-
-PyDoc_STRVAR(_blake2_blake2s_update__doc__,
-"update($self, data, /)\n"
-"--\n"
-"\n"
-"Update this hash object\'s state with the provided bytes-like object.");
-
-#define _BLAKE2_BLAKE2S_UPDATE_METHODDEF \
- {"update", (PyCFunction)_blake2_blake2s_update, METH_O, _blake2_blake2s_update__doc__},
-
-PyDoc_STRVAR(_blake2_blake2s_digest__doc__,
-"digest($self, /)\n"
-"--\n"
-"\n"
-"Return the digest value as a bytes object.");
-
-#define _BLAKE2_BLAKE2S_DIGEST_METHODDEF \
- {"digest", (PyCFunction)_blake2_blake2s_digest, METH_NOARGS, _blake2_blake2s_digest__doc__},
-
-static PyObject *
-_blake2_blake2s_digest_impl(BLAKE2sObject *self);
-
-static PyObject *
-_blake2_blake2s_digest(BLAKE2sObject *self, PyObject *Py_UNUSED(ignored))
-{
- return _blake2_blake2s_digest_impl(self);
-}
-
-PyDoc_STRVAR(_blake2_blake2s_hexdigest__doc__,
-"hexdigest($self, /)\n"
-"--\n"
-"\n"
-"Return the digest value as a string of hexadecimal digits.");
-
-#define _BLAKE2_BLAKE2S_HEXDIGEST_METHODDEF \
- {"hexdigest", (PyCFunction)_blake2_blake2s_hexdigest, METH_NOARGS, _blake2_blake2s_hexdigest__doc__},
-
-static PyObject *
-_blake2_blake2s_hexdigest_impl(BLAKE2sObject *self);
-
-static PyObject *
-_blake2_blake2s_hexdigest(BLAKE2sObject *self, PyObject *Py_UNUSED(ignored))
-{
- return _blake2_blake2s_hexdigest_impl(self);
-}
+
+exit:
+ /* Cleanup for key */
+ if (key.obj) {
+ PyBuffer_Release(&key);
+ }
+ /* Cleanup for salt */
+ if (salt.obj) {
+ PyBuffer_Release(&salt);
+ }
+ /* Cleanup for person */
+ if (person.obj) {
+ PyBuffer_Release(&person);
+ }
+
+ return return_value;
+}
+
+PyDoc_STRVAR(_blake2_blake2s_copy__doc__,
+"copy($self, /)\n"
+"--\n"
+"\n"
+"Return a copy of the hash object.");
+
+#define _BLAKE2_BLAKE2S_COPY_METHODDEF \
+ {"copy", (PyCFunction)_blake2_blake2s_copy, METH_NOARGS, _blake2_blake2s_copy__doc__},
+
+static PyObject *
+_blake2_blake2s_copy_impl(BLAKE2sObject *self);
+
+static PyObject *
+_blake2_blake2s_copy(BLAKE2sObject *self, PyObject *Py_UNUSED(ignored))
+{
+ return _blake2_blake2s_copy_impl(self);
+}
+
+PyDoc_STRVAR(_blake2_blake2s_update__doc__,
+"update($self, data, /)\n"
+"--\n"
+"\n"
+"Update this hash object\'s state with the provided bytes-like object.");
+
+#define _BLAKE2_BLAKE2S_UPDATE_METHODDEF \
+ {"update", (PyCFunction)_blake2_blake2s_update, METH_O, _blake2_blake2s_update__doc__},
+
+PyDoc_STRVAR(_blake2_blake2s_digest__doc__,
+"digest($self, /)\n"
+"--\n"
+"\n"
+"Return the digest value as a bytes object.");
+
+#define _BLAKE2_BLAKE2S_DIGEST_METHODDEF \
+ {"digest", (PyCFunction)_blake2_blake2s_digest, METH_NOARGS, _blake2_blake2s_digest__doc__},
+
+static PyObject *
+_blake2_blake2s_digest_impl(BLAKE2sObject *self);
+
+static PyObject *
+_blake2_blake2s_digest(BLAKE2sObject *self, PyObject *Py_UNUSED(ignored))
+{
+ return _blake2_blake2s_digest_impl(self);
+}
+
+PyDoc_STRVAR(_blake2_blake2s_hexdigest__doc__,
+"hexdigest($self, /)\n"
+"--\n"
+"\n"
+"Return the digest value as a string of hexadecimal digits.");
+
+#define _BLAKE2_BLAKE2S_HEXDIGEST_METHODDEF \
+ {"hexdigest", (PyCFunction)_blake2_blake2s_hexdigest, METH_NOARGS, _blake2_blake2s_hexdigest__doc__},
+
+static PyObject *
+_blake2_blake2s_hexdigest_impl(BLAKE2sObject *self);
+
+static PyObject *
+_blake2_blake2s_hexdigest(BLAKE2sObject *self, PyObject *Py_UNUSED(ignored))
+{
+ return _blake2_blake2s_hexdigest_impl(self);
+}
/*[clinic end generated code: output=c80d8d06ce40a192 input=a9049054013a1b77]*/