Skip to content

Latest commit

 

History

History
82 lines (51 loc) · 2.4 KB

CHANGELOG.md

File metadata and controls

82 lines (51 loc) · 2.4 KB

Changelog

All notable changes to this project will be documented in this file.

Changed

  • Enhanced CLI capabilities with glob patterns and inspection commands

Added

  • process_in_line to AlgorithmProcessInLine trait

Changed

  • Blocks are now computed in parallel
  • permutation module has been changed to algorithm
  • Permutation trait has been decomposed in multiple Algorithm* trait

Removed

  • clear function from chacha20 and poly1305

Added

  • Added extension traits for vector of bytes, slices, strings, to encrypt and decrypt easily in secured-enclave.

Added

  • BREAKING Added Poly1305 AEAD as default authentication algorithm used by Enclave

Changed

  • BREAKING Fixed ChaCha20 implementation and added test vectors compliant with IETF RFC-7539

Added

  • Added local implementation of the ChaCha20 cipher, shipped with secure-cipher crate (#9)

Removed

  • Removed Cipher, ChaCha20Poly1305 and EncryptionKey from secure-enclave crate (#9)
    • The secure-cipher crate should be used now.

Documentation

  • Add inline documentation ((#6))

Fixed

  • Hide password prompt (#7)

Fixed

  • Remove unsafe println (#4)

Added

  • Initial release