mirror of
https://github.com/estkme-group/lpac
synced 2025-06-30 00:32:57 +02:00
6 lines
235 B
C
6 lines
235 B
C
#pragma once
|
|
|
|
int euicc_base64_decode_len(const char *bufcoded);
|
|
int euicc_base64_decode(char *bufplain, const char *bufcoded);
|
|
int euicc_base64_encode_len(int len);
|
|
int euicc_base64_encode(char *encoded, const char *string, int len);
|