Files
Momentum-Firmware/applications/plugins/totp/lib/hmac/byteswap.h
RogueMaster 6208620636 totp
2022-10-07 03:12:19 -04:00

10 lines
144 B
C

#ifndef BYTESWAP_H
#define BYTESWAP_H
#include <stdint.h>
uint32_t swap_uint32( uint32_t val );
uint64_t swap_uint64( uint64_t val );
#endif