cleanup
[cryptodev-linux.git] / NEWS
blob3de07b2ec246662d365e022c37477ae1fc95370e
1 Version 1.2 (released 2012-02-24)
3 * In kernels that do not distinguish between hw 
4 accelerated ciphers or not set the SIOP_FLAG_KERNEL_DRIVER_ONLY
5 flag based on driver name.
7 * camelia was renamed to camellia.
9 * Added COP_FLAG_RESET to allow resetting the state
10 in multi-update.
12 * Corrected issue in ARM processors with mv_cesa.
15 Version 1.1 (released 2012-02-20)
17 * Fixed alignment issue in speed.c
19 * Defined HASH_MAX_LEN in cryptodev.h
21 * CIOCGSESSINFO ioctl() sets the SIOP_FLAG_KERNEL_DRIVER_ONLY 
22 flag if the driver is only available through kernel
23 driver (and is not just software cipher).
25 * Added new encryption ioctl, CIOCAUTHCRYPT, which
26 combines authentication and encryption. Operates
27 in AEAD, TLS and SRTP modes (the API might change
28 in later versions).
31 Version 1.0 (released 2011-04-12)
33 * Several fixes in the included examples. Based on
34 patches by Vladimir Zapolskiy.
37 Version 0.9 (released 2011-02-11)
39 * Added additional test tools:
40   - sha_speed does performance testing of SHA1 and SHA256
41   - hashcrypt_speed additionally encrypts with AES128 and AES256
43 * Allow updating the IV in userspace via the COP_FLAG_WRITE_IV
44 flag.
46 * Export the alignmask in an OCF compatible way.
48 * Fix for kernel crash on passing incorrect session ID.
50 * Added CIOCGSESSINFO to export additional information
51 for each session.
54 Version 0.8 (released 2010-11-06)
56 * Made cryptodev aware of alignment constraints.
58 * Added support for CRYPTO_AES_ECB.
60 * Added asynchronous operation support using
61   CIOCASYNCCRYPT, CIOCASYNCFETCH ioctls and poll().
64 Version 0.7 (released 2010-10-08)
66 * Added COP_FLAG_FINAL to make multi-update
67 more efficient.
69 * Added CRIOGET_NOT_NEEDED definition to allow
70 users of the API to distinguish from the bare
71 OpenBSD API that requires the CRIOGET.
74 Version 0.6 (released 2010-09-16)
76 * multi-update support for hash calculation using
77 the new flag COP_FLAG_UPDATE.
79 * Relicensed under GPLv2.
81 * Added AES-CTR.
83 * Corrected fallback to non-zero copy when referenced
84 pages were not writable.
87 Version 0.5 (released 2010-07-06)
89 * Corrected issue with zero copy on multiple pages.
91 * Fallback to normal operation if user pages cannot be
92 mapped.
95 Version 0.4 (released 2010-07-03)
97 * Internal engine supports operations with zero copy from
98 user space. 
101 Version 0.3 (released 2010-06-19)
103 * Corrected bug when initializing unsupported algorithms.
106 Version 0.2 (released 2010-06-18)
108 * Added compat_ioctl() to allow working on systems where userspace is 32bits
109 and kernel is operating in 64bit mode (Phil Sutter)
111 * Added several sanity checks to input.