base85 icon indicating copy to clipboard operation
base85 copied to clipboard

Base85 encoder and decoder for arbitrary data

Results 3 base85 issues
Sort by recently updated
recently updated
newest added

Four zero bytes encoded as `!!!!!` instead of `z`. ``` $ascii85 = new Base85([ "characters" => Base85::ASCII85, "compress.spaces" => false, "compress.zeroes" => true ]); print $ascii85->encode("\0\0\0\0"); // !!!!! ``` I...

I tested "Base85" on PHP 5.X and PHP 7.X. The result of PHP 5.X seems to be abnormal. To find out the cause of the problem, I tested more text....

With a code like this: ``` echo Tuupola\Base85Proxy::encode(md5("test", true)), "\n"; ``` amd64: ``` $'/lH7Np6%b2,mG-7?1o ``` armv7el: ``` $'/lH7Np6%epLbF-7?1o ``` PHP 7.4 on both. -- Just reported a similar bug to...