Base64 解码 - 字符串长度不正确
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用的是 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.