LCOV - code coverage report
Current view: top level - Modules/_blake2/clinic - blake2b_impl.c.h (source / functions) Hit Total Coverage
Test: CPython 3.12 LCOV report [commit acb105a7c1f] Lines: 100 116 86.2 %
Date: 2022-07-20 13:12:14 Functions: 4 4 100.0 %
Branches: 89 106 84.0 %

           Branch data     Line data    Source code
       1                 :            : /*[clinic input]
       2                 :            : preserve
       3                 :            : [clinic start generated code]*/
       4                 :            : 
       5                 :            : PyDoc_STRVAR(py_blake2b_new__doc__,
       6                 :            : "blake2b(data=b\'\', /, *, digest_size=_blake2.blake2b.MAX_DIGEST_SIZE,\n"
       7                 :            : "        key=b\'\', salt=b\'\', person=b\'\', fanout=1, depth=1, leaf_size=0,\n"
       8                 :            : "        node_offset=0, node_depth=0, inner_size=0, last_node=False,\n"
       9                 :            : "        usedforsecurity=True)\n"
      10                 :            : "--\n"
      11                 :            : "\n"
      12                 :            : "Return a new BLAKE2b hash object.");
      13                 :            : 
      14                 :            : static PyObject *
      15                 :            : py_blake2b_new_impl(PyTypeObject *type, PyObject *data, int digest_size,
      16                 :            :                     Py_buffer *key, Py_buffer *salt, Py_buffer *person,
      17                 :            :                     int fanout, int depth, unsigned long leaf_size,
      18                 :            :                     unsigned long long node_offset, int node_depth,
      19                 :            :                     int inner_size, int last_node, int usedforsecurity);
      20                 :            : 
      21                 :            : static PyObject *
      22                 :       1647 : py_blake2b_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
      23                 :            : {
      24                 :       1647 :     PyObject *return_value = NULL;
      25                 :            :     static const char * const _keywords[] = {"", "digest_size", "key", "salt", "person", "fanout", "depth", "leaf_size", "node_offset", "node_depth", "inner_size", "last_node", "usedforsecurity", NULL};
      26                 :            :     static _PyArg_Parser _parser = {NULL, _keywords, "blake2b", 0};
      27                 :            :     PyObject *argsbuf[13];
      28                 :            :     PyObject * const *fastargs;
      29                 :       1647 :     Py_ssize_t nargs = PyTuple_GET_SIZE(args);
      30         [ +  + ]:       1647 :     Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0;
      31                 :       1647 :     PyObject *data = NULL;
      32                 :       1647 :     int digest_size = BLAKE2B_OUTBYTES;
      33                 :       1647 :     Py_buffer key = {NULL, NULL};
      34                 :       1647 :     Py_buffer salt = {NULL, NULL};
      35                 :       1647 :     Py_buffer person = {NULL, NULL};
      36                 :       1647 :     int fanout = 1;
      37                 :       1647 :     int depth = 1;
      38                 :       1647 :     unsigned long leaf_size = 0;
      39                 :       1647 :     unsigned long long node_offset = 0;
      40                 :       1647 :     int node_depth = 0;
      41                 :       1647 :     int inner_size = 0;
      42                 :       1647 :     int last_node = 0;
      43                 :       1647 :     int usedforsecurity = 1;
      44                 :            : 
      45   [ +  +  +  -  :       1647 :     fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 0, 1, 0, argsbuf);
             +  -  +  - ]
      46         [ +  + ]:       1647 :     if (!fastargs) {
      47                 :          2 :         goto exit;
      48                 :            :     }
      49         [ +  + ]:       1645 :     if (nargs < 1) {
      50                 :       1035 :         goto skip_optional_posonly;
      51                 :            :     }
      52                 :        610 :     noptargs--;
      53                 :        610 :     data = fastargs[0];
      54                 :       1645 : skip_optional_posonly:
      55         [ +  + ]:       1645 :     if (!noptargs) {
      56                 :         29 :         goto skip_optional_kwonly;
      57                 :            :     }
      58         [ +  + ]:       1616 :     if (fastargs[1]) {
      59                 :        119 :         digest_size = _PyLong_AsInt(fastargs[1]);
      60   [ +  +  -  + ]:        119 :         if (digest_size == -1 && PyErr_Occurred()) {
      61                 :          0 :             goto exit;
      62                 :            :         }
      63         [ +  + ]:        119 :         if (!--noptargs) {
      64                 :         92 :             goto skip_optional_kwonly;
      65                 :            :         }
      66                 :            :     }
      67         [ +  + ]:       1524 :     if (fastargs[2]) {
      68         [ -  + ]:        606 :         if (PyObject_GetBuffer(fastargs[2], &key, PyBUF_SIMPLE) != 0) {
      69                 :          0 :             goto exit;
      70                 :            :         }
      71         [ -  + ]:        606 :         if (!PyBuffer_IsContiguous(&key, 'C')) {
      72                 :          0 :             _PyArg_BadArgument("blake2b", "argument 'key'", "contiguous buffer", fastargs[2]);
      73                 :          0 :             goto exit;
      74                 :            :         }
      75         [ +  + ]:        606 :         if (!--noptargs) {
      76                 :        603 :             goto skip_optional_kwonly;
      77                 :            :         }
      78                 :            :     }
      79         [ +  + ]:        921 :     if (fastargs[3]) {
      80         [ -  + ]:         21 :         if (PyObject_GetBuffer(fastargs[3], &salt, PyBUF_SIMPLE) != 0) {
      81                 :          0 :             goto exit;
      82                 :            :         }
      83         [ -  + ]:         21 :         if (!PyBuffer_IsContiguous(&salt, 'C')) {
      84                 :          0 :             _PyArg_BadArgument("blake2b", "argument 'salt'", "contiguous buffer", fastargs[3]);
      85                 :          0 :             goto exit;
      86                 :            :         }
      87         [ +  + ]:         21 :         if (!--noptargs) {
      88                 :         18 :             goto skip_optional_kwonly;
      89                 :            :         }
      90                 :            :     }
      91         [ +  + ]:        903 :     if (fastargs[4]) {
      92         [ -  + ]:         21 :         if (PyObject_GetBuffer(fastargs[4], &person, PyBUF_SIMPLE) != 0) {
      93                 :          0 :             goto exit;
      94                 :            :         }
      95         [ -  + ]:         21 :         if (!PyBuffer_IsContiguous(&person, 'C')) {
      96                 :          0 :             _PyArg_BadArgument("blake2b", "argument 'person'", "contiguous buffer", fastargs[4]);
      97                 :          0 :             goto exit;
      98                 :            :         }
      99         [ +  + ]:         21 :         if (!--noptargs) {
     100                 :         18 :             goto skip_optional_kwonly;
     101                 :            :         }
     102                 :            :     }
     103         [ +  + ]:        885 :     if (fastargs[5]) {
     104                 :        261 :         fanout = _PyLong_AsInt(fastargs[5]);
     105   [ +  +  -  + ]:        261 :         if (fanout == -1 && PyErr_Occurred()) {
     106                 :          0 :             goto exit;
     107                 :            :         }
     108         [ +  + ]:        261 :         if (!--noptargs) {
     109                 :        258 :             goto skip_optional_kwonly;
     110                 :            :         }
     111                 :            :     }
     112         [ +  + ]:        627 :     if (fastargs[6]) {
     113                 :        261 :         depth = _PyLong_AsInt(fastargs[6]);
     114   [ +  +  -  + ]:        261 :         if (depth == -1 && PyErr_Occurred()) {
     115                 :          0 :             goto exit;
     116                 :            :         }
     117         [ +  + ]:        261 :         if (!--noptargs) {
     118                 :        258 :             goto skip_optional_kwonly;
     119                 :            :         }
     120                 :            :     }
     121         [ +  + ]:        369 :     if (fastargs[7]) {
     122         [ +  + ]:          7 :         if (!_PyLong_UnsignedLong_Converter(fastargs[7], &leaf_size)) {
     123                 :          1 :             goto exit;
     124                 :            :         }
     125         [ +  + ]:          6 :         if (!--noptargs) {
     126                 :          3 :             goto skip_optional_kwonly;
     127                 :            :         }
     128                 :            :     }
     129         [ +  + ]:        365 :     if (fastargs[8]) {
     130         [ +  + ]:          7 :         if (!_PyLong_UnsignedLongLong_Converter(fastargs[8], &node_offset)) {
     131                 :          2 :             goto exit;
     132                 :            :         }
     133         [ +  + ]:          5 :         if (!--noptargs) {
     134                 :          2 :             goto skip_optional_kwonly;
     135                 :            :         }
     136                 :            :     }
     137         [ +  + ]:        361 :     if (fastargs[9]) {
     138                 :        261 :         node_depth = _PyLong_AsInt(fastargs[9]);
     139   [ +  +  -  + ]:        261 :         if (node_depth == -1 && PyErr_Occurred()) {
     140                 :          0 :             goto exit;
     141                 :            :         }
     142         [ +  + ]:        261 :         if (!--noptargs) {
     143                 :        258 :             goto skip_optional_kwonly;
     144                 :            :         }
     145                 :            :     }
     146         [ +  + ]:        103 :     if (fastargs[10]) {
     147                 :         70 :         inner_size = _PyLong_AsInt(fastargs[10]);
     148   [ +  +  -  + ]:         70 :         if (inner_size == -1 && PyErr_Occurred()) {
     149                 :          0 :             goto exit;
     150                 :            :         }
     151         [ +  + ]:         70 :         if (!--noptargs) {
     152                 :         67 :             goto skip_optional_kwonly;
     153                 :            :         }
     154                 :            :     }
     155         [ +  + ]:         36 :     if (fastargs[11]) {
     156                 :          3 :         last_node = PyObject_IsTrue(fastargs[11]);
     157         [ -  + ]:          3 :         if (last_node < 0) {
     158                 :          0 :             goto exit;
     159                 :            :         }
     160         [ +  - ]:          3 :         if (!--noptargs) {
     161                 :          3 :             goto skip_optional_kwonly;
     162                 :            :         }
     163                 :            :     }
     164                 :         33 :     usedforsecurity = PyObject_IsTrue(fastargs[12]);
     165         [ -  + ]:         33 :     if (usedforsecurity < 0) {
     166                 :          0 :         goto exit;
     167                 :            :     }
     168                 :         33 : skip_optional_kwonly:
     169                 :       1642 :     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);
     170                 :            : 
     171                 :       1647 : exit:
     172                 :            :     /* Cleanup for key */
     173         [ +  + ]:       1647 :     if (key.obj) {
     174                 :        606 :        PyBuffer_Release(&key);
     175                 :            :     }
     176                 :            :     /* Cleanup for salt */
     177         [ +  + ]:       1647 :     if (salt.obj) {
     178                 :         21 :        PyBuffer_Release(&salt);
     179                 :            :     }
     180                 :            :     /* Cleanup for person */
     181         [ +  + ]:       1647 :     if (person.obj) {
     182                 :         21 :        PyBuffer_Release(&person);
     183                 :            :     }
     184                 :            : 
     185                 :       1647 :     return return_value;
     186                 :            : }
     187                 :            : 
     188                 :            : PyDoc_STRVAR(_blake2_blake2b_copy__doc__,
     189                 :            : "copy($self, /)\n"
     190                 :            : "--\n"
     191                 :            : "\n"
     192                 :            : "Return a copy of the hash object.");
     193                 :            : 
     194                 :            : #define _BLAKE2_BLAKE2B_COPY_METHODDEF    \
     195                 :            :     {"copy", (PyCFunction)_blake2_blake2b_copy, METH_NOARGS, _blake2_blake2b_copy__doc__},
     196                 :            : 
     197                 :            : static PyObject *
     198                 :            : _blake2_blake2b_copy_impl(BLAKE2bObject *self);
     199                 :            : 
     200                 :            : static PyObject *
     201                 :          2 : _blake2_blake2b_copy(BLAKE2bObject *self, PyObject *Py_UNUSED(ignored))
     202                 :            : {
     203                 :          2 :     return _blake2_blake2b_copy_impl(self);
     204                 :            : }
     205                 :            : 
     206                 :            : PyDoc_STRVAR(_blake2_blake2b_update__doc__,
     207                 :            : "update($self, data, /)\n"
     208                 :            : "--\n"
     209                 :            : "\n"
     210                 :            : "Update this hash object\'s state with the provided bytes-like object.");
     211                 :            : 
     212                 :            : #define _BLAKE2_BLAKE2B_UPDATE_METHODDEF    \
     213                 :            :     {"update", (PyCFunction)_blake2_blake2b_update, METH_O, _blake2_blake2b_update__doc__},
     214                 :            : 
     215                 :            : PyDoc_STRVAR(_blake2_blake2b_digest__doc__,
     216                 :            : "digest($self, /)\n"
     217                 :            : "--\n"
     218                 :            : "\n"
     219                 :            : "Return the digest value as a bytes object.");
     220                 :            : 
     221                 :            : #define _BLAKE2_BLAKE2B_DIGEST_METHODDEF    \
     222                 :            :     {"digest", (PyCFunction)_blake2_blake2b_digest, METH_NOARGS, _blake2_blake2b_digest__doc__},
     223                 :            : 
     224                 :            : static PyObject *
     225                 :            : _blake2_blake2b_digest_impl(BLAKE2bObject *self);
     226                 :            : 
     227                 :            : static PyObject *
     228                 :        588 : _blake2_blake2b_digest(BLAKE2bObject *self, PyObject *Py_UNUSED(ignored))
     229                 :            : {
     230                 :        588 :     return _blake2_blake2b_digest_impl(self);
     231                 :            : }
     232                 :            : 
     233                 :            : PyDoc_STRVAR(_blake2_blake2b_hexdigest__doc__,
     234                 :            : "hexdigest($self, /)\n"
     235                 :            : "--\n"
     236                 :            : "\n"
     237                 :            : "Return the digest value as a string of hexadecimal digits.");
     238                 :            : 
     239                 :            : #define _BLAKE2_BLAKE2B_HEXDIGEST_METHODDEF    \
     240                 :            :     {"hexdigest", (PyCFunction)_blake2_blake2b_hexdigest, METH_NOARGS, _blake2_blake2b_hexdigest__doc__},
     241                 :            : 
     242                 :            : static PyObject *
     243                 :            : _blake2_blake2b_hexdigest_impl(BLAKE2bObject *self);
     244                 :            : 
     245                 :            : static PyObject *
     246                 :        544 : _blake2_blake2b_hexdigest(BLAKE2bObject *self, PyObject *Py_UNUSED(ignored))
     247                 :            : {
     248                 :        544 :     return _blake2_blake2b_hexdigest_impl(self);
     249                 :            : }
     250                 :            : /*[clinic end generated code: output=10eb47aba77f192d input=a9049054013a1b77]*/

Generated by: LCOV version 1.14