* Create base58.c

* Create base58.h

* Update base58.c

* Update base58.h
This commit is contained in:
GGSuchao
2017-05-09 00:02:30 +08:00
committed by Simon
parent 84944805b0
commit ef69585909
2 changed files with 164 additions and 0 deletions

14
include/openssl/base58.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef LIBBASE58_H
#define LIBBASE58_H
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
bool base58_decode(const char *b58, size_t b58sz, void *bin, size_t *binszp);
bool base58_encode(const void *data, size_t binsz, char *b58, size_t *b58sz);
#endif