Base X 字符串编码

发布于 2024-09-06 10:20:48 字数 95 浏览 4 评论 0原文

我正在寻找一个将字符串(字节流)编码为任意基/字母表的例程(例如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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

仄言 2024-09-13 10:20:48

这是我的 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/

单身狗的梦 2024-09-13 10:20:48

我见过(和编写)的每个算法都有一个字符序列,并按序列的长度对数字进行 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文