Base X 字符串编码
我正在寻找一个将字符串(字节流)编码为任意基/字母表的例程(例如base64编码,但我可以选择字母表)。我见过一些例程对数字进行基本 X 编码,但不对字符串进行基本 X 编码。
I'm looking for a routine that will encode a string (stream of bytes) into an arbitrary base/alphabet (like base64 encoding but I get to choose the alphabet). I've seen a few routines that do base X encoding for a number, but not for a string.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我的 BaseX (BaseN) 编码算法的实现: https://github.com/KvanTTT/BaseNcoding 。
您还可以在演示站点尝试不同的字母和参数: http://kvanttt.github.io/BaseNcoding/
There is my implementation of BaseX (BaseN) encoding algorithm: https://github.com/KvanTTT/BaseNcoding.
Also you can experiment with different alphabets and parameters at demo-site: http://kvanttt.github.io/BaseNcoding/
我见过(和编写)的每个算法都有一个字符序列,并按序列的长度对数字进行 divmod,使用 mod 作为数字字符序列的索引,然后将 div 提供给 div回到流程中。
Every algorithm I've seen (and written) for this has a sequence of characters, and does a divmod of the number by the length of the sequence, uses the mod for the index into the sequence for the digit character, and feeds the div back into the process.