Home | History | Annotate | Download | only in clinic

Lines Matching defs:string

27 "Return the digest value as a string of binary data.");
45 "Return the digest value as a string of hexadecimal digits.");
63 "Update this hash object\'s state with the provided string.");
69 "sha256($module, /, string=b\'\')\n"
72 "Return a new SHA-256 hash object; optionally initialized with a string.");
78 _sha256_sha256_impl(PyObject *module, PyObject *string);
84 static const char * const _keywords[] = {"string", NULL};
86 PyObject *string = NULL;
89 &string)) {
92 return_value = _sha256_sha256_impl(module, string);
99 "sha224($module, /, string=b\'\')\n"
102 "Return a new SHA-224 hash object; optionally initialized with a string.");
108 _sha256_sha224_impl(PyObject *module, PyObject *string);
114 static const char * const _keywords[] = {"string", NULL};
116 PyObject *string = NULL;
119 &string)) {
122 return_value = _sha256_sha224_impl(module, string);