/* ============================================================================= * hexutil.h - 바이트 <-> 소문자 hex 변환 * ===========================================================================*/ #ifndef HEXUTIL_H #define HEXUTIL_H #include #include /* in[0..len) 를 소문자 hex 로 out 에 기록하고 NUL 종료. * out 버퍼는 최소 (len*2 + 1) 바이트여야 한다. */ void hex_encode_lower(const uint8_t *in, size_t len, char *out); #endif /* HEXUTIL_H */