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 "sha256($module, /, string=b\'\', *, usedforsecurity=True)\n"
76 "Return a new SHA-256 hash object; optionally initialized with a string.");
82 _sha256_sha256_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 = _sha256_sha256_impl(module, string, usedforsecurity);
124 "sha224($module, /, string=b\'\', *, usedforsecurity=True)\n"
127 "Return a new SHA-224 hash object; optionally initialized with a string.");
133 _sha256_sha224_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 = _sha256_sha224_impl(module, string, usedforsecurity);