用于压缩/加密字符串的本机 ruby 方法?
您好,是否有任何本机函数(不安装其他 gem,或不从 shell 调用 openssl)来压缩字符串或加密字符串?
有点像mysql压缩。
<代码> “一根非常长且松散的绳子”.compress
输出=“8d20\1l\201”
“8d20\1l\201”.解压缩
输出=“一个非常长且松散的字符串”?
同样加密一些字符串?
Hi is there any native function (not install other gem, or not calling openssl from shell) to compress string or encrypt a string?
sort of like mysql compress.
"a very long and loose string".compress
output = "8d20\1l\201"
"8d20\1l\201".decompress
output = "a very long and loose string"?
and likewise to encrypt some string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 http://ruby-doc.org/stdlib/libdoc/ zlib/rdoc/classes/Zlib.html
来自 http://snippets.dzone 的加密。 com/posts/show/991
From http://ruby-doc.org/stdlib/libdoc/zlib/rdoc/classes/Zlib.html
Encryption from http://snippets.dzone.com/posts/show/991
OpenSSL 和 Zlib。 此问题中有一个 OpenSSL 使用示例。
OpenSSL and Zlib. There’s an example of OpenSSL usage in this question.