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
- Host: GitHub
- URL: https://github.com/unknown-gd/gmlm_ascii85
- Owner: unknown-gd
- Created: 2022-07-22T14:18:07.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-22T14:24:31.000Z (about 4 years ago)
- Last Synced: 2025-03-05T02:35:33.438Z (over 1 year ago)
- Language: Lua
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)