问题标签 [base32]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - 试图将 UInt64 转换为 base32 字符串.....在 python 中工作而不是在 vb.net
嗨希望我能在这里得到一个愚蠢问题的答案。愚蠢,因为它已向我解释过,但我仍然无法正确理解。
我怀疑结果不同的原因是因为 vb.net 在您调用 ^ 时返回双精度,我应该“转移”它但似乎无法解决语法(或找到它)感谢您的时间 =+ 想法=+ 帮助
php - Base32 或 Base64 的自定义实现
我需要 PHP 中 Base32 或 Base64 的自定义实现(库或类/函数集)
函数应返回 URL 安全字符串。
iphone - 将基本 32 位解码字符串转换为十进制
我有一个基本 32 位解码的字符串现在我想解码该字符串我还想将任何字符串编码为基本 32 位解码字符串。有什么办法,任何算法(甚至在 C 中)或任何 API,这样我就可以解决这个问题。提前谢谢。
url - 为什么用 Base32 编码 URL?
我认为这是一个非常简短的问题,但我不确定我是否理解它的重点。
为什么用 Base32 编码 URL?它的好处是什么,它的缺点是什么?
java - 如何将字符串从 base 32 解码为 BigInteger
我尝试了以下代码:
这是输出:
使用这个网站在 base 32 之间进行转换,我得到的结果与实际输出不同。根据我从网站上得到的结果,这是我期望看到的结果:
知道为什么会这样吗?
编辑:
请原谅我故意尝试转换 2^31-1 造成混淆。
使用我之前链接到的转换网站,我更改了输入:
预期输出:
实际输出:
java - 在 Android 中将 Base-16 字符串转换为 Base-32
我想将 base16 字符串转换为 base32 字符串。例如,如果我有一个 base-16 字符串——“000000000288”,现在我想将其转换为 base-32 对应项(“K-8”)。
有一个网站可以做到:
java - 使用 base 40 编码字符串有什么含义?
我已经看到它建议可以使用 Base 40 编码来压缩字符串(在 Java 中发送到 Redis 实例 FWIW),并且快速测试表明它对于我使用的某些数据比我使用的替代方法更有效考虑;小号。
有什么理由比 40 更喜欢 base 32 或 64 编码吗?有什么缺点,像这样的编码可能是无损的吗?
javascript - Javascript 自定义 Base32
我正在尝试使用自定义字符集实现 base32,基本上是 [A-Z0-5]。不幸的是,我没有为此建立查找表。
有人对我如何构建整个编码和解码方案有任何指示吗?
javascript - 将 Arraybuffer 编码为 Base32
我正在尝试将 ArrayBuffer javascript 对象编码为 base32 字符串,但没有成功。有没有人对我如何做到这一点有任何建议?这是我目前拥有的。我已经从 base32-js 项目中改编了一些代码。
java - Encryption algorithm preferably having an implementation in java
I am looking for a symmetric key encryption scheme which would encrypt my 12 byte data. As you can see it does not conform to 64 bit or 128 bit boundaries for me to use block ciphering algorithms and I do not want to pad the data as I have restriction on the length of encrypted data. The restriction is because I would be transforming using base 32 it to a printable key which cannot exceed 20 chars. The plain text has very predictable data pattern, so the encryption scheme should be able to hide that. From what I understand, the pseudo random key generation is the only soultion fo this problem, but the solution that encrypts the data and solution that decrypts it, do not talk to each other.