mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-07 00:46:17 +08:00
Master (#173)
* Create base58.c * Create base58.h * Update base58.c * Update base58.h
This commit is contained in:
14
include/openssl/base58.h
Normal file
14
include/openssl/base58.h
Normal 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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user