Lines Matching defs:string
49 "Return the digest value as a string of hexadecimal digits.");
67 "Update this hash object\'s state with the provided string.");
73 "sha512($module, /, string=b\'\', *, usedforsecurity=True)\n"
76 "Return a new SHA-512 hash object; optionally initialized with a string.");
82 _sha512_sha512_impl(PyObject *module, PyObject *string, int usedforsecurity);
88 static const char * const _keywords[] = {"string", "usedforsecurity", NULL};
92 PyObject *string = NULL;
103 string = args[0];
117 return_value = _sha512_sha512_impl(module, string, usedforsecurity);
124 "sha384($module, /, string=b\'\', *, usedforsecurity=True)\n"
127 "Return a new SHA-384 hash object; optionally initialized with a string.");
133 _sha512_sha384_impl(PyObject *module, PyObject *string, int usedforsecurity);
139 static const char * const _keywords[] = {"string", "usedforsecurity", NULL};
143 PyObject *string = NULL;
154 string = args[0];
168 return_value = _sha512_sha384_impl(module, string, usedforsecurity);