Home
last modified time | relevance | path

Searched refs:z85 (Results 1 – 3 of 3) sorted by relevance

/coreutils/src/
Dbasenc.c279 struct z85_decode_context z85; member
775 ctx->ctx.z85.i = 0; in z85_decode_ctx_init()
781 (((ctx)->ctx.z85.octets[1] * 85 * 85 * 85) + \
782 ((ctx)->ctx.z85.octets[2] * 85 * 85) + \
783 ((ctx)->ctx.z85.octets[3] * 85) + \
784 ((ctx)->ctx.z85.octets[4]))
788 ((int_fast64_t) (ctx)->ctx.z85.octets[0] * 85 * 85 * 85 * 85 )
830 if (ctx->ctx.z85.i > 0) in z85_decode_ctx()
862 ctx->ctx.z85.octets[ctx->ctx.z85.i++] = c; in z85_decode_ctx()
863 if (ctx->ctx.z85.i == 5) in z85_decode_ctx()
[all …]
/coreutils/doc/
Dcoreutils.texi2381 @item --z85
2382 @opindex --z85
2390 When encoding with @option{--z85}, input length must be a multiple of 4;
2391 when decoding with @option{--z85}, input length must be a multiple of 5.
2421 $ printf '\376\117\202\000' | basenc --z85
/coreutils/
DNEWS858 base64,base64url,base32,base32hex,base16,base2,z85.