• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

iskolbin/lbase64: Lua base64 decoder/encoder

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

iskolbin/lbase64

开源软件地址(OpenSource Url):

https://github.com/iskolbin/lbase64

开源编程语言(OpenSource Language):

Lua 100.0%

开源软件介绍(OpenSource Introduction):

Build Status license MIT Licence

Lua base64 encoder/decoder

Pure Lua base64 encoder/decoder. Works with Lua 5.1+ and LuaJIT. Fallbacks to pure Lua bit operations if bit/bit32/native bit operators are not available.

local base64 = require'base64'
local str = 'Man is distinguished, not only by his reason, but by this singular passion from other animals, which is a lust of the mind, that by a perseverance of delight in the continued and indefatigable generation of knowledge, exceeds the short vehemence of any carnal pleasure.'
local b64str = 'TWFuIGlzIGRpc3Rpbmd1aXNoZWQsIG5vdCBvbmx5IGJ5IGhpcyByZWFzb24sIGJ1dCBieSB0aGlzIHNpbmd1bGFyIHBhc3Npb24gZnJvbSBvdGhlciBhbmltYWxzLCB3aGljaCBpcyBhIGx1c3Qgb2YgdGhlIG1pbmQsIHRoYXQgYnkgYSBwZXJzZXZlcmFuY2Ugb2YgZGVsaWdodCBpbiB0aGUgY29udGludWVkIGFuZCBpbmRlZmF0aWdhYmxlIGdlbmVyYXRpb24gb2Yga25vd2xlZGdlLCBleGNlZWRzIHRoZSBzaG9ydCB2ZWhlbWVuY2Ugb2YgYW55IGNhcm5hbCBwbGVhc3VyZS4=' 
local encoded = base64.encode( str )
local decoded = base64.decode( b64str )
assert( str == decoded )
assert( b64str == encoded )

base64.encode( str, encoder = DEFAULT, usecache = false )

Encodes str string using encoder table. By default uses table with + as char for 62, / as char for 63 and = as padding char. You can specify custom encoder. For this you could use base64.makeencoder. If you are encoding large chunks of text (or another highly redundant data) it's possible to highly increase performace (for text approx. x2 gain) by using usecache = true. For binary data like images using cache decreasing performance.

base64.decode( str, decoder = DEFAULT, usecache = false )

Decodes str string using decoder table. Default decoder uses same chars as default encoder.

base64.makeencoder( s62 = '+', s63 = '/', spad = '=' )

Make custom encoding table

base64.makedecoder( s62 = '+', s63 = '/', spad = '=' )

Make custom decoding table

Install

luarocks install base64



鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap