Files
Upsilon/ion/src/device/base64.h
Romain Goyet a29c775663 [ion] Encode the serial number in Base64
Also, expose serialNumber() in Ion and keep "copySerialNumber" in
Ion::Device. This allows the DFU bootloader to remain .bss-free.
2018-05-04 17:31:41 +02:00

6 lines
106 B
C++

namespace Base64 {
void encode(const unsigned char * input, unsigned int inputLength, char * output);
}