Base64 解码 - 字符串长度不正确

发布于 2024-08-05 02:58:54 字数 161 浏览 4 评论 0原文

我正在尝试使用 openssl 解码 base64 编码的字符串。但是,它只能工作 5 次中的 4 次。

解码后的字符串应始终为 64 个字符长。 BIO_read() 总是返回 64。但是,有时返回的缓冲区小于 64!

任何想法有什么问题吗?我如何才能始终获得正确的字符串?

I'm trying to decode base64-encoded string with openssl. However, it works only 4 times out of 5.

Decoded string should always be 64 chars long. BIO_read() always returns 64. However, sometimes returned buffer is shorter than 64!

Any ideas what is wrong? How can i always get the correct string?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

绮筵 2024-08-12 02:58:54

您使用的是 str[n]cpy 吗?你不能! Base64 编码的数据可以包含空字符,C 字符串处理函数将其解释为字符串结尾。

使用 memcpy 代替 str[n]cpy,使用 memcmp 代替 strcmp 等。这些函数要求您知道数据大小,但我相信您确实知道这一点。

另外,如果您对 C 样式字符串等不是很有信心,可以在此处找到有关该主题的大量信息。

Are you using str[n]cpy? You can't! Base64 encoded data can contain null characters, which C string processing functions interpret as end-of-string.

Use memcpy instead of str[n]cpy, memcmp instead of strcmp, etc. These functions require you to know your data size, but I believe that you do know it.

Also if you're not very confident about C-style strings and such, there's plenty of information to be found about the topic here.

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