v1.0.1
This release is a major release and is incompatible with the previous version 0.0.7. Be sure to update your code!
FEATURES:
- Now supports PolarSSL 1.3.x.
CHANGES:
- The use of
Cipher::reset(initialization_vector)
has been changed and should be replaced withCipher::set_iv(initialization_vector, vector_length)
as per the PolarSSL API. See the updatedCipher
module samples. Cipher::reset()
does not take an argument anymore and can be used to reset the encryption context. UseCipher::set_iv
method to set the initialization vector.