Skip to content

Latest commit

History

History
88 lines (56 loc) 路 3.29 KB

CHANGELOG.md

File metadata and controls

88 lines (56 loc) 路 3.29 KB

0.10.1 (2023-07-15)

Bug Fixes

  • AES: fix bug causing wrong output sometimes (315d4f6)

0.10.0 (2021-04-05)

Features

  • block-ciphers: add 3DES algorithm (c0877ae)
  • block-ciphers: add DES algorithm (15d408e)

0.9.1 (2021-04-04)

Bug Fixes

  • pbkdf2: fix offset out of bounds (1377a73)

0.9.0 (2021-04-02)

Features

  • Block ciphers: add CAST5 algorithm (840c419)

0.8.0 (2021-03-26)

Features

  • KDFs: add HKDF algorithm (d6260ca)
  • KDFs: add PBKDF2 algorithm (d3a0d78)

0.7.0 (2021-03-23)

Features

  • block-modes: add CTR block mode (f91253c)

0.6.0 (2021-03-16)

  • refactor!: generic block cipher modes (e0329bf)

Performance Improvements

  • AES: use DataView for better performance (0c20792)

0.5.0 (2021-03-14)

  • refactor!: remove root mod.ts (d74ae74)

Features

  • Blowfish: add CFB and OFB block modes (1f61da9)
  • add HMAC algorithm (bd08fa8)
  • AES: add CFB block mode (39bb513)
  • AES: add OFB block mode (3e54974)

0.4.1 (2021-03-12)

Performance Improvements

  • AES: reduce amount of array copies (5db6174)

0.4.0 (2021-03-11)

  • refactor!: rewrite AES and Blowfish logic (5288fa3)

BREAKING CHANGES

  • Block modes are now separated from encryption logic and can be instantiated directly, e.g. AesEcb