summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-09-22 11:11:24 +0100
committerMatt Caswell <matt@openssl.org>2016-03-07 21:26:04 +0000
commit98ee75439d7e844de6c063a4be5bd09b3cc9db53 (patch)
tree014bfd6c0ef4670574466b10fe17449be2264649 /doc
parent4e3925227a65ade92f3052ee54a810f5d6c4e96e (diff)
Update the dasync engine to add a pipeline cipher
Implement aes128-cbc as a pipeline capable cipher in the dasync engine. As dasync is just a dummy engine, it actually just performs the parallel encrypts/decrypts in serial. Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/EVP_CIPHER_meth_new.pod3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/crypto/EVP_CIPHER_meth_new.pod b/doc/crypto/EVP_CIPHER_meth_new.pod
index 75b2d61415..30596b5e0a 100644
--- a/doc/crypto/EVP_CIPHER_meth_new.pod
+++ b/doc/crypto/EVP_CIPHER_meth_new.pod
@@ -207,6 +207,9 @@ I could use some help explaining this one!
=back
+EVP_CIPHER_meth_set_impl_ctx_size() sets the size of the EVP_CIPHER's
+implementation context so that it can be automatically allocated.
+
EVP_CIPHER_meth_set_init() sets the cipher init function for
B<cipher>.
The cipher init function is called by EVP_CipherInit(),