aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2025-07-06 22:43:28 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2025-07-06 22:43:28 +0200
commit53de6e6150ea5538930e1963eb87ada153093ea0 (patch)
tree1f6061ab909988da609f7feec3e140b2ec9d8bf7 /include/libbb.h
parent5e17e3c6f49cef45a86ed9438941ca2d4f6ae906 (diff)
downloadbusybox-w32-53de6e6150ea5538930e1963eb87ada153093ea0.tar.gz
busybox-w32-53de6e6150ea5538930e1963eb87ada153093ea0.tar.bz2
busybox-w32-53de6e6150ea5538930e1963eb87ada153093ea0.zip
libbb/yescrypt: use common ascii64 encoding routine
function old new delta num2str64_lsb_first 33 46 +13 yescrypt_r 1235 1133 -102 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/1 up/down: 13/-102) Total: -89 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 1c23d2f66..b761b1091 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -2191,6 +2191,7 @@ void read_base64(FILE *src_stream, FILE *dst_stream, int flags) FAST_FUNC;
2191 2191
2192int FAST_FUNC i2a64(int i); 2192int FAST_FUNC i2a64(int i);
2193int FAST_FUNC a2i64(char c); 2193int FAST_FUNC a2i64(char c);
2194char* FAST_FUNC num2str64_lsb_first(char *s, unsigned v, int n);
2194 2195
2195typedef struct md5_ctx_t { 2196typedef struct md5_ctx_t {
2196 uint8_t wbuffer[64]; /* always correctly aligned for uint64_t */ 2197 uint8_t wbuffer[64]; /* always correctly aligned for uint64_t */