質問

I'm learning OpenSSL and I found this method BIO_f_md() in the libtrary documentation: http://www.openssl.org/docs/crypto/BIO_f_md.html where it says:

Any data written or read through a digest BIO using BIO_read() and BIO_write() is digested.

What does digest mean? What is digested data?

役に立ちましたか?

解決

In cryptology lingo, a digest is simply a hash value - i.e. the output of a cryptographic hash function. Usually, the data itself is referred to as the "message", and the hash value of the data is called the "digest" or "message-digest". So, digested means "hashed".

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top