aboutsummaryrefslogtreecommitdiffstats
path: root/engines/e_dasync_err.h
Commit message (Collapse)AuthorAgeFilesLines
* Manual fixes after copyright consolidationRich Salz2016-05-171-55/+12
| | | | Reviewed-by: Richard Levitte <levitte@openssl.org>
* Use correct function ID in error pathAlessandro Ghedini2016-03-091-1/+2
| | | | | | | This fixes "make update". Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org>
* Add dummy pipeline support for aes128_cbc_hmac_sha1Matt Caswell2016-03-071-0/+1
| | | | | | | Add dummy pipline support to dasync for the aes128_cbc_hmac_sha1 cipher. This is treated as an AEAD cipher. Reviewed-by: Tim Hudson <tjh@openssl.org>
* Update the dasync engine to add a pipeline cipherMatt Caswell2016-03-071-12/+14
| | | | | | | | 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>
* GH758: e_dasync_err.h: honor no-filenames optionViktor Szakats2016-02-291-1/+1
| | | | | Signed-off-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
* Add the Dummy Async engine (dasync)Matt Caswell2015-11-201-0/+91
This engine is for developers of async aware applications. It simulates asynchronous activity with external hardware. This initial version supports SHA1 and RSA. Certain operations using those algorithms have async job "pauses" in them - using the new libcrypto async capability. Reviewed-by: Rich Salz <rsalz@openssl.org>