You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
338 B
15 lines
338 B
8 years ago
|
#ifndef LIBWALLY_BASE58_H
|
||
|
#define LIBWALLY_BASE58_H
|
||
|
|
||
|
/**
|
||
|
* Calculate the base58 checksum of a block of binary data.
|
||
|
*
|
||
|
* @bytes_in: Binary data to calculate the checksum for.
|
||
|
* @len: The length of @bytes_in in bytes.
|
||
|
*/
|
||
|
uint32_t base58_get_checksum(
|
||
|
const unsigned char *bytes_in,
|
||
|
size_t len);
|
||
|
|
||
|
#endif /* LIBWALLY_BASE58_H */
|