RSA 签名的大小是多少(以字节为单位)?
我目前正在使用 Crypto++ 为数据块生成签名。我预计签名为 20 个字节(SHA 1 哈希),因为我的理解是签名只是一个加密的哈希。但是当检查 maxsignaturelength 和签名长度时,它似乎是 192 字节。正常吗?
I'm currently using Crypto++ to generate a signature for a block of data. I expected the signature to be 20 bytes ( SHA 1 Hash) , as my understanding was that the signature is just an encrypted hash. But when checking with maxsignaturelength and signature length , it seems that it is 192 bytes. Is it normal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
签名的大小是 RSA 模数的大小(以字节为单位)。
The size of the signature is the size of the RSA modulus in bytes.