utils.h 170 B

1234567891011121314151617
  1. #ifndef __ELEC0017_CRYPTO_H__
  2. #define __ELEC0017_CRYPTO_H__
  3. #ifdef __cplusplus
  4. extern "C"
  5. {
  6. #endif
  7. int hex2bin(const char *hex);
  8. #ifdef __cplusplus
  9. }
  10. #endif
  11. #endif