Java z-base-32 编码算法
我正在寻找 z-base-32 enc algo 在java中,有什么建议吗? (编码和解码)
I'm searching for an implementation of z-base-32 enc algo in java, any suggestions?
(encoding and decoding)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我没有比较,但它看起来像我们这里使用的 Base32。这是原始代码,
http://svn.savannah.gnu.org/svn/ccrtp/tags/release-ccrtp-1.7.0/contributions/ZRTP4J/src/gnu/java/zrtp/ utils/Base32.java
I didn't compare but it looks like the Base32 we use here. Here is the original code,
http://svn.savannah.gnu.org/svn/ccrtp/tags/release-ccrtp-1.7.0/contributions/ZRTP4J/src/gnu/java/zrtp/utils/Base32.java
好吧,我觉得我必须尝试一下。我将 C# 实现从 我的十便士 翻译为 Java,并且 可以从此处下载示例和源代码。这不是特别好看的代码,但是嘿 - 希望它能起作用。
我还没有时间彻底测试它,但我的简短测试工作得很好。
用法:
Ok, I felt I had to give this a shot. I translated the C# implementation from My Ten Pennies to Java, and an example and source an be downloaded from here. It's not especially good looking code, but hey - it hopefully does it's work.
I haven't had time to test it thoroughly, but my short tests work fine.
Usage: