An open API service indexing awesome lists of open source software.

https://github.com/unknown-gd/gmlm_ascii85

Ascii 85 Encoding in Pure Lua
https://github.com/unknown-gd/gmlm_ascii85

Last synced: about 1 year ago
JSON representation

Ascii 85 Encoding in Pure Lua

Awesome Lists containing this project

README

          

# gmlm_ascii85
Ascii 85 Encoding in Pure Lua for glua

## Example:
```lua
require("ascii85")
local str = "PrikolMen:-b"
local enc = ascii85.encode( str )
local dec = ascii85.decode( enc )

print( enc, dec )
```

### Result:
```
<~:i^8cDer-ZDE9@Y~> PrikolMen:-b
```

Original Version: [SatheeshJM/Ascii85-Encoding-in-Pure-Lua](https://github.com/SatheeshJM/Ascii85-Encoding-in-Pure-Lua)