C++ 中的 base32 转换
有谁知道任何常用的 C++ 库提供了从 10 基数到 32 基数的编码和解码方法,反之亦然?
谢谢, 斯特凡诺
does anybody know any commonly used library for C++ that provides methods for encoding and decoding numbers from base 10 to base 32 and viceversa?
Thanks,
Stefano
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
[已更新]显然,C++ std::setbase() IO 操纵器和普通
<<
和>>
IO 运算符仅处理基数 8、10 和 16,并且因此对于处理基数 32 是无用的。因此,为了解决
您将需要借助其他功能。
要将包含基本 2..36 表示形式的 C 样式字符串转换为整数,您可以使用
#include
并使用strtol(3)
&有限公司的功能集。至于将整数转换为具有任意基数的字符串......我找不到一个简单的答案。
printf(3)
样式格式字符串仅处理基数 8、10、16 AFAICS,就像std::setbase
一样。有人吗?[Updated] Apparently, the C++ std::setbase() IO manipulator and normal
<<
and>>
IO operators only handle bases 8, 10, and 16, and is therefore useless for handling base 32.So to solve your issue of converting
you will need to resort to other functions.
For converting C style strings containing base 2..36 representations to integers, you can use
#include <cstdlib>
and use thestrtol(3)
& Co. set of functions.As for converting integers to strings with arbitrary base... I cannot find an easy answer.
printf(3)
style format strings only handle bases 8,10,16 AFAICS, just likestd::setbase
. Anyone?您的意思是“基数 10 到基数 32”,而不是整数到基数 32?后者似乎更有可能,也更有用。默认情况下,标准格式的 I/O 函数在处理整数时会生成以 10 为基数的字符串格式。
对于从 32 进制到整数的转换,标准库 strtol() 函数将执行此操作。反过来,您不需要一个库来实现自己可以轻松实现的东西(并非所有东西都是乐高积木)。
这是一个例子,不一定是最有效的,但很简单;
Did you mean "base 10 to base 32", rather than integer to base32? The latter seems more likely and more useful; by default standard formatted I/O functions generate base 10 string format when dealing with integers.
For the base 32 to integer conversion the standard library strtol() function will do that. For the reciprocal, you don't need a library for something you can easily implement yourself (not everything is a lego brick).
Here's an example, not necessarily the most efficient, but simple;
在直接回答原来的(现在是旧的)问题时,我不知道有任何通用库用于以 Base32 编码字节数组,或随后再次解码它们。然而,上周我需要将以 Base32 表示的 SHA1 哈希值解码为其原始字节数组。这是我编写的一些 C++ 代码(带有一些值得注意的 Windows/小端工件),用于执行此操作并验证结果。
请注意,与上面的 Clifford 代码相反,如果我没有记错的话,它假定 RFC 4648 中提到的“base32hex”字母表,而我的代码则假定“base32”字母表(“AZ”和“2-7”)。
In direct answer to the original (and now old) question, I don't know of any common library for encoding byte arrays in base32, or for decoding them again afterward. However, I was presented last week with a need to decode SHA1 hash values represented in base32 into their original byte arrays. Here's some C++ code (with some notable Windows/little endian artifacts) that I wrote to do just that, and to verify the results.
Note that in contrast with Clifford's code above, which, if I'm not mistaken, assumes the "base32hex" alphabet mentioned on RFC 4648, my code assumes the "base32" alphabet ("A-Z" and "2-7").
我不知道有任何专门用于 Base32 编码的常用库,但 Crypto++ 包含 公共域 Base32 编码器和解码器。
I'm not aware of any commonly-used library devoted to base32 encoding but Crypto++ includes a public domain base32 encoder and decoder.
我不使用cpp,所以如果我错了,请纠正我。我编写这段代码是为了将其从 C# 翻译过来,以免给我的熟人带来麻烦。我用来创建这些方法的原始来源位于 stackoverflow 上的另一篇文章中:
话
虽这么说,这是我的解决方案:
I don't use cpp, so correct me if I'm wrong. I wrote this code for the sake of translating it from C# to save my acquaintance the trouble. The original source, that which I used to create these methods, is on a different post, here, on stackoverflow:
https://stackoverflow.com/a/10981113/13766753
That being said, here's my solution: