Files
lightning/external/libwally-core/src/base58.h
Rusty Russell f42f34b82d external: new subdirectory for all external libraries and submodules.
You will want to 'make distclean' after this.

I also removed libsecp; we use the one in in libwally anyway.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2017-08-29 17:54:14 +02:00

15 lines
338 B
C

#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 */