1 /*[clinic input]
2 preserve
3 [clinic start generated code]*/
4
5 PyDoc_STRVAR(MD5Type_copy__doc__,
6 "copy($self, /)\n"
7 "--\n"
8 "\n"
9 "Return a copy of the hash object.");
10
11 #define MD5TYPE_COPY_METHODDEF \
12 {"copy", (PyCFunction)MD5Type_copy, METH_NOARGS, MD5Type_copy__doc__},
13
14 static PyObject *
15 MD5Type_copy_impl(MD5object *self);
16
17 static PyObject *
MD5Type_copy(MD5object * self,PyObject * Py_UNUSED (ignored))18 MD5Type_copy(MD5object *self, PyObject *Py_UNUSED(ignored))
19 {
20 return MD5Type_copy_impl(self);
21 }
22
23 PyDoc_STRVAR(MD5Type_digest__doc__,
24 "digest($self, /)\n"
25 "--\n"
26 "\n"
27 "Return the digest value as a bytes object.");
28
29 #define MD5TYPE_DIGEST_METHODDEF \
30 {"digest", (PyCFunction)MD5Type_digest, METH_NOARGS, MD5Type_digest__doc__},
31
32 static PyObject *
33 MD5Type_digest_impl(MD5object *self);
34
35 static PyObject *
MD5Type_digest(MD5object * self,PyObject * Py_UNUSED (ignored))36 MD5Type_digest(MD5object *self, PyObject *Py_UNUSED(ignored))
37 {
38 return MD5Type_digest_impl(self);
39 }
40
41 PyDoc_STRVAR(MD5Type_hexdigest__doc__,
42 "hexdigest($self, /)\n"
43 "--\n"
44 "\n"
45 "Return the digest value as a string of hexadecimal digits.");
46
47 #define MD5TYPE_HEXDIGEST_METHODDEF \
48 {"hexdigest", (PyCFunction)MD5Type_hexdigest, METH_NOARGS, MD5Type_hexdigest__doc__},
49
50 static PyObject *
51 MD5Type_hexdigest_impl(MD5object *self);
52
53 static PyObject *
MD5Type_hexdigest(MD5object * self,PyObject * Py_UNUSED (ignored))54 MD5Type_hexdigest(MD5object *self, PyObject *Py_UNUSED(ignored))
55 {
56 return MD5Type_hexdigest_impl(self);
57 }
58
59 PyDoc_STRVAR(MD5Type_update__doc__,
60 "update($self, obj, /)\n"
61 "--\n"
62 "\n"
63 "Update this hash object\'s state with the provided string.");
64
65 #define MD5TYPE_UPDATE_METHODDEF \
66 {"update", (PyCFunction)MD5Type_update, METH_O, MD5Type_update__doc__},
67
68 PyDoc_STRVAR(_md5_md5__doc__,
69 "md5($module, /, string=b\'\', *, usedforsecurity=True)\n"
70 "--\n"
71 "\n"
72 "Return a new MD5 hash object; optionally initialized with a string.");
73
74 #define _MD5_MD5_METHODDEF \
75 {"md5", (PyCFunction)(void(*)(void))_md5_md5, METH_FASTCALL|METH_KEYWORDS, _md5_md5__doc__},
76
77 static PyObject *
78 _md5_md5_impl(PyObject *module, PyObject *string, int usedforsecurity);
79
80 static PyObject *
_md5_md5(PyObject * module,PyObject * const * args,Py_ssize_t nargs,PyObject * kwnames)81 _md5_md5(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
82 {
83 PyObject *return_value = NULL;
84 static const char * const _keywords[] = {"string", "usedforsecurity", NULL};
85 static _PyArg_Parser _parser = {NULL, _keywords, "md5", 0};
86 PyObject *argsbuf[2];
87 Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0;
88 PyObject *string = NULL;
89 int usedforsecurity = 1;
90
91 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 0, 1, 0, argsbuf);
92 if (!args) {
93 goto exit;
94 }
95 if (!noptargs) {
96 goto skip_optional_pos;
97 }
98 if (args[0]) {
99 string = args[0];
100 if (!--noptargs) {
101 goto skip_optional_pos;
102 }
103 }
104 skip_optional_pos:
105 if (!noptargs) {
106 goto skip_optional_kwonly;
107 }
108 usedforsecurity = PyObject_IsTrue(args[1]);
109 if (usedforsecurity < 0) {
110 goto exit;
111 }
112 skip_optional_kwonly:
113 return_value = _md5_md5_impl(module, string, usedforsecurity);
114
115 exit:
116 return return_value;
117 }
118 /*[clinic end generated code: output=dbe3abc60086f3ef input=a9049054013a1b77]*/
119