Did some bench marking using the Base64, Base85, Base128 encoders using a 50,371 byte file for testing. Seeing which would be the best to use for resource packing in BAS code. All 3 have their advantages. Here are the results...
The Base128 is best on making smallest output size, slower decoding.
The Base64 encodes fast, but makes largest output size.
The Base85 decodes fast, output size in between others.
- Dav
The Base128 is best on making smallest output size, slower decoding.
The Base64 encodes fast, but makes largest output size.
The Base85 decodes fast, output size in between others.
- Dav