documented updates
[cryptodev-linux.git] / NEWS
blobd96d8aa4cb6bd3a07d11e7e7a36f1eb2c5315de7
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 is 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.
36 Version 0.9 (released 2011-02-11)
38 * Added additional test tools:
39   - sha_speed does performance testing of SHA1 and SHA256
40   - hashcrypt_speed additionally encrypts with AES128 and AES256
42 * Allow updating the IV in userspace via the COP_FLAG_WRITE_IV
43 flag.
45 * Export the alignmask in an OCF compatible way.
47 * Fix for kernel crash on passing incorrect session ID.
49 * Added CIOCGSESSINFO to export additional information
50 for each session.
52 Version 0.8 (released 2010-11-06)
54 * Made cryptodev aware of alignment constraints.
56 * Added support for CRYPTO_AES_ECB.
58 * Added asynchronous operation support using
59   CIOCASYNCCRYPT, CIOCASYNCFETCH ioctls and poll().
61 Version 0.7 (released 2010-10-08)
63 * Added COP_FLAG_FINAL to make multi-update
64 more efficient.
66 * Added CRIOGET_NOT_NEEDED definition to allow
67 users of the API to distinguish from the bare
68 OpenBSD API that requires the CRIOGET.
70 Version 0.6 (released 2010-09-16)
72 * multi-update support for hash calculation using
73 the new flag COP_FLAG_UPDATE.
75 * Relicensed under GPLv2.
77 * Added AES-CTR.
79 * Corrected fallback to non-zero copy when referenced
80 pages were not writable.
82 Version 0.5 (released 2010-07-06)
84 * Corrected issue with zero copy on multiple pages.
86 * Fallback to normal operation if user pages cannot be
87 mapped.
89 Version 0.4 (released 2010-07-03)
91 * Internal engine supports operations with zero copy from
92 user space. 
94 Version 0.3 (released 2010-06-19)
96 * Corrected bug when initializing unsupported algorithms.
98 Version 0.2 (released 2010-06-18)
100 * Added compat_ioctl() to allow working on systems where userspace is 32bits
101 and kernel is operating in 64bit mode (Phil Sutter)
103 * Added several sanity checks to input.