2021-10-13 10:22:35 -03: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 15:12:22 -03:00
|
|
|
// Export for '_hashlib' shared extension.
|
2021-10-13 10:22:35 -03:00
|
|
|
PyAPI_FUNC(PyObject*) _Py_strhex(const
|
|
|
|
char* argbuf,
|
|
|
|
const Py_ssize_t arglen);
|
|
|
|
|
|
|
|
// Returns a bytes() containing the ASCII hex representation of argbuf.
|
2023-08-21 15:12:22 -03:00
|
|
|
extern PyObject* _Py_strhex_bytes(
|
2021-10-13 10:22:35 -03:00
|
|
|
const char* argbuf,
|
|
|
|
const Py_ssize_t arglen);
|
|
|
|
|
|
|
|
// These variants include support for a separator between every N bytes:
|
2023-08-21 15:12:22 -03:00
|
|
|
extern PyObject* _Py_strhex_with_sep(
|
2021-10-13 10:22:35 -03:00
|
|
|
const char* argbuf,
|
|
|
|
const Py_ssize_t arglen,
|
2022-04-21 17:07:19 -03:00
|
|
|
PyObject* sep,
|
2021-10-13 10:22:35 -03:00
|
|
|
const int bytes_per_group);
|
2023-08-21 15:12:22 -03:00
|
|
|
|
|
|
|
// Export for 'binascii' shared extension
|
2021-10-13 10:22:35 -03:00
|
|
|
PyAPI_FUNC(PyObject*) _Py_strhex_bytes_with_sep(
|
|
|
|
const char* argbuf,
|
|
|
|
const Py_ssize_t arglen,
|
2022-04-21 17:07:19 -03:00
|
|
|
PyObject* sep,
|
2021-10-13 10:22:35 -03:00
|
|
|
const int bytes_per_group);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_INTERNAL_STRHEX_H */
|