2021-10-13 15:22:35 +02:00
|
|
|
#ifndef Py_INTERNAL_STRHEX_H
|
|
|
|
|
#define Py_INTERNAL_STRHEX_H
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef Py_BUILD_CORE
|
|
|
|
|
# error "this header requires Py_BUILD_CORE define"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// Returns a str() containing the hex representation of argbuf.
|
2023-08-21 20:12:22 +02:00
|
|
|
// Export for '_hashlib' shared extension.
|
2026-04-01 11:33:30 +03:00
|
|
|
PyAPI_FUNC(PyObject *) _Py_strhex(const char *argbuf, Py_ssize_t arglen);
|
2021-10-13 15:22:35 +02:00
|
|
|
|
|
|
|
|
// Returns a bytes() containing the ASCII hex representation of argbuf.
|
2026-04-01 11:33:30 +03:00
|
|
|
extern PyObject *_Py_strhex_bytes(const char *argbuf, Py_ssize_t arglen);
|
2021-10-13 15:22:35 +02:00
|
|
|
|
|
|
|
|
// These variants include support for a separator between every N bytes:
|
2026-04-01 11:33:30 +03:00
|
|
|
extern PyObject *_Py_strhex_with_sep(
|
|
|
|
|
const char *argbuf,
|
|
|
|
|
Py_ssize_t arglen,
|
|
|
|
|
PyObject *sep,
|
|
|
|
|
Py_ssize_t bytes_per_group);
|
2023-08-21 20:12:22 +02:00
|
|
|
|
|
|
|
|
// Export for 'binascii' shared extension
|
2026-04-01 11:33:30 +03:00
|
|
|
PyAPI_FUNC(PyObject *) _Py_strhex_bytes_with_sep(
|
|
|
|
|
const char *argbuf,
|
|
|
|
|
Py_ssize_t arglen,
|
|
|
|
|
PyObject *sep,
|
|
|
|
|
Py_ssize_t bytes_per_group);
|
2021-10-13 15:22:35 +02:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
#endif /* !Py_INTERNAL_STRHEX_H */
|