mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-07 00:46:17 +08:00
update base58
This commit is contained in:
@@ -53,7 +53,31 @@
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
|
||||
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);
|
||||
|
||||
/* BEGIN ERROR CODES */
|
||||
/*
|
||||
* The following lines are auto generated by the script mkerr.pl. Any changes
|
||||
* made after this point may be overwritten when the script is next run.
|
||||
*/
|
||||
|
||||
int ERR_load_BASE58_strings(void);
|
||||
|
||||
/* Error codes for the BASE58 functions. */
|
||||
|
||||
/* Function codes. */
|
||||
# define BASE58_F_BASE58_DECODE 100
|
||||
|
||||
/* Reason codes. */
|
||||
# define BASE58_R_HIGHBIT_SET_ON_INVALID_DIGIT 100
|
||||
|
||||
# ifdef __cplusplus
|
||||
}
|
||||
# endif
|
||||
#endif
|
||||
|
||||
@@ -107,6 +107,7 @@ typedef struct err_state_st {
|
||||
# define ERR_LIB_SDF 63
|
||||
# define ERR_LIB_SKF 64
|
||||
# define ERR_LIB_SOF 65
|
||||
# define ERR_LIB_BASE58 66
|
||||
|
||||
# define ERR_LIB_USER 128
|
||||
|
||||
@@ -159,6 +160,7 @@ typedef struct err_state_st {
|
||||
# define SDFerr(f,r) ERR_PUT_error(ERR_LIB_SDF,(f),(r),OPENSSL_FILE,OPENSSL_LINE)
|
||||
# define SKFerr(f,r) ERR_PUT_error(ERR_LIB_SKF,(f),(r),OPENSSL_FILE,OPENSSL_LINE)
|
||||
# define SOFerr(f,r) ERR_PUT_error(ERR_LIB_SOF,(f),(r),OPENSSL_FILE,OPENSSL_LINE)
|
||||
# define BASE58err(f,r) ERR_PUT_error(ERR_LIB_BASE58,(f),(r),OPENSSL_FILE,OPENSSL_LINE)
|
||||
|
||||
# define ERR_PACK(l,f,r) ( \
|
||||
(((unsigned int)(l) & 0x0FF) << 24L) | \
|
||||
@@ -220,6 +222,7 @@ typedef struct err_state_st {
|
||||
# define ERR_R_SDF_LIB ERR_LIB_SDF/* 63 */
|
||||
# define ERR_R_SKF_LIB ERR_LIB_SKF/* 64 */
|
||||
# define ERR_R_SOF_LIB ERR_LIB_SOF/* 65 */
|
||||
# define ERR_R_BASE58_LIB ERR_LIB_BASE58/* 66 */
|
||||
|
||||
# define ERR_R_NESTED_ASN1_ERROR 58
|
||||
|
||||
|
||||
Reference in New Issue
Block a user