mirror of
https://github.com/jakcron/nstool
synced 2024-11-23 14:09:29 +00:00
14 lines
367 B
C
14 lines
367 B
C
|
#pragma once
|
||
|
#include <cstdint>
|
||
|
#include <cstring>
|
||
|
|
||
|
namespace crypto
|
||
|
{
|
||
|
namespace base64
|
||
|
{
|
||
|
size_t B64_GetEncodeLen(const uint8_t* src, size_t slen);
|
||
|
void B64_Encode(const uint8_t* src, size_t slen, uint8_t* dst, size_t dlen);
|
||
|
size_t B64_GetDecodeLen(const uint8_t* src, size_t slen);
|
||
|
void B64_Decode(const uint8_t* src, size_t slen, uint8_t* dst, size_t dlen);
|
||
|
}
|
||
|
}
|