Fabcoin Core
0.16.2
P2P Digital Currency
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
src
cpp-ethereum
utils
libscrypt
b64.h
Go to the documentation of this file.
1
2
/* BASE64 libraries used internally - should not need to be packaged */
3
4
#define b64_encode_len(A) ((A+2)/3 * 4 + 1)
5
#define b64_decode_len(A) (A / 4 * 3 + 2)
6
7
int
libscrypt_b64_encode
(
unsigned
char
const
*src,
size_t
srclength,
8
/*@out@*/
char
*target,
size_t
targetsize);
9
int
libscrypt_b64_decode
(
char
const
*src,
/*@out@*/
unsigned
char
*target,
10
size_t
targetsize);
libscrypt_b64_encode
int libscrypt_b64_encode(unsigned char const *src, size_t srclength, char *target, size_t targetsize)
Definition:
b64.c:123
libscrypt_b64_decode
int libscrypt_b64_decode(char const *src, unsigned char *target, size_t targetsize)
Definition:
b64.c:187
Generated on Mon Oct 22 2018 15:15:30 for Fabcoin Core by
1.8.11