Hi,
I have a question about the asynchronous characteristics of the crypto api.
1) crypto_alloc_hash("sha1", 0, CRYPTO_ALG_ASYNC), does this code create
an asynchronous sha1 transform?
2) crypto_alloc_hash("sha1", 0, 0), does this code create a synchronous
sha1 transform?
3) Is synchronous taken to mean the follwoing? When the function returns
(and is successful) the result is already computed and placed at the
destination.
4) Is asynchronous taken to mean the following? "When the function
returns (and is successful) we know that a request has been posted for
the operation to take place but we have no guarantees that the operation
has completed.
5) If the answer to the above is yes then how can the following style of
code work? I see such code in many places:
crypto_alloc_hash("sha1", 0, CRYPTO_ALG_ASYNC);
crypto_hash_init(&desc);
rc = crypto_hash_update(&desc, &sg, len);
rc = crypto_hash_final(&desc, dst);
now_use_dst(dst);
How can we know that the dst has the right contents when we call
"now_use_dst(dst)"? Is there something that I am missing?
Regards,
Dimitris
--
To unsubscribe from this list: send the line "unsubscribe linux-crypto" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html