libbtc
bitcoinclibrary
|
Go to the source code of this file.
Functions | |
int | btc_base58_decode (void *bin, size_t *binszp, const char *b58) |
int | btc_b58check (const void *bin, size_t binsz, const char *base58str) |
int | btc_base58_encode (char *b58, size_t *b58sz, const void *data, size_t binsz) |
int | btc_base58_encode_check (const uint8_t *data, int datalen, char *str, int strsize) |
int | btc_base58_decode_check (const char *str, uint8_t *data, size_t datalen) |
Variables | |
static const int8_t | b58digits_map [] |
static const char | b58digits_ordered [] |
int btc_b58check | ( | const void * | bin, |
size_t | binsz, | ||
const char * | base58str | ||
) |
Definition at line 127 of file base58.c.
References sha256_Raw().
Referenced by btc_base58_decode_check().
int btc_base58_decode | ( | void * | bin, |
size_t * | binszp, | ||
const char * | b58 | ||
) |
Definition at line 42 of file base58.c.
References b58digits_map.
Referenced by btc_base58_decode_check().
int btc_base58_decode_check | ( | const char * | str, |
uint8_t * | data, | ||
size_t | datalen | ||
) |
Definition at line 219 of file base58.c.
References btc_b58check(), and btc_base58_decode().
Referenced by btc_hdnode_deserialize(), and btc_tx_add_address_out().
int btc_base58_encode | ( | char * | b58, |
size_t * | b58sz, | ||
const void * | data, | ||
size_t | binsz | ||
) |
Definition at line 154 of file base58.c.
References b58digits_ordered.
Referenced by btc_base58_encode_check().
int btc_base58_encode_check | ( | const uint8_t * | data, |
int | len, | ||
char * | str, | ||
int | strsize | ||
) |
Copyright (c) 2013-2014 Tomas Dzetkulic Copyright (c) 2013-2014 Pavol Rusnak
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Definition at line 198 of file base58.c.
References btc_base58_encode(), and sha256_Raw().
Referenced by btc_hdnode_serialize().
|
static |
Copyright (c) 2012-2014 Luke Dashjr Copyright (c) 2013-2014 Pavol Rusnak
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Definition at line 31 of file base58.c.
Referenced by btc_base58_decode().
|
static |
Definition at line 151 of file base58.c.
Referenced by btc_base58_encode().