Tasmota/lib/lib_div/ams/hexutils.h
gemu f09a083777
Sml ams (#17828)
* sml ams crypto support

* add ams library

* fix crc names

* fix TLS dependency

* Update library.properties

* Update xsns_53_sml.ino
2023-01-30 15:03:46 +01:00

12 lines
226 B
C

#ifndef _HEXUTILS_H
#define _HEXUTILS_H
#include <stdint.h>
#include "Arduino.h"
String AMS_toHex(uint8_t* in);
String AMS_toHex(uint8_t* in, uint16_t size);
void AMS_fromHex(uint8_t *out, String in, uint16_t size);
#endif