mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-01 03:23:09 +03:00
11 lines
406 B
C
11 lines
406 B
C
|
|
/* BASE64 libraries used internally - should not need to be packaged */
|
|
#include <stddef.h>
|
|
#define b64_encode_len(A) ((A+2)/3 * 4 + 1)
|
|
#define b64_decode_len(A) (A / 4 * 3 + 2)
|
|
|
|
int libscrypt_b64_encode(unsigned char const *src, size_t srclength,
|
|
/*@out@*/ char *target, size_t targetsize);
|
|
int libscrypt_b64_decode(char const *src, /*@out@*/ unsigned char *target,
|
|
size_t targetsize);
|