我正在学习OpenSSL,我在libtrary文档中找到了这个方法BIO_f_md()
:http://www.openssl.org/docs/crypto/BIO_f_md.html其中说:
Any data written or read through a digest BIO using BIO_read() and BIO_write() is digested.
摘要是什么意思?什么是消化数据?
答案 0 :(得分:3)
在cryptology lingo中,摘要只是一个散列值 - 即加密散列函数的输出。通常,数据本身被称为“消息”,并且数据的散列值被称为“摘要”或“消息摘要”。所以,消化意味着“哈希”。