mirror of
https://github.com/arendst/Tasmota.git
synced 2025-04-23 22:37:16 +00:00

* sml ams crypto support * add ams library * fix crc names * fix TLS dependency * Update library.properties * Update xsns_53_sml.ino
12 lines
226 B
C
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
|