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 "md5($module, /, string=b\'\')\n"
72 "Return a new MD5 hash object; optionally initialized with a string.");
78 _md5_md5_impl(PyObject *module, PyObject *string);
84 static const char * const _keywords[] = {"string", NULL};
86 PyObject *string = NULL;
89 &string)) {
92 return_value = _md5_md5_impl(module, string);