CHANGELOG 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. 0.2.3
  2. - enable bitcode setting for Debug on an Apple TV
  3. - faster compilation times
  4. - improve padding functions
  5. 0.2.2
  6. - Fix ChaCha20 cipher
  7. - Replace for(;;) with for-in
  8. - Workaround for "NSString are not yet implicitly convertible to String" on Linux
  9. 0.2.1
  10. - Fix linux build
  11. - re-add umbrella header
  12. 0.2
  13. - Rabbit cipher (RFC4503)
  14. - Linux Swift support
  15. - Swift Package Manager support
  16. - tvOS support
  17. - Add optional seed to CRC
  18. - Add umbrella header (CryptoSwift.h)
  19. - Fix AES in CTR mode
  20. - Fix no padding support for CTR and CFB block modes
  21. - Fix access to AES.Error and ChaCha20.Error
  22. 0.1.1
  23. - Fix Cococapods package (missing Foundation integration)
  24. 0.1.0
  25. - Major performance improvements.
  26. - Transition from Optionals to throw error.
  27. - Replace enum Cipher with protocol for ciphers.
  28. - Added CRC16
  29. - Fixed AES CFB decryption
  30. - Drop internal "Foundation" dependency, nonetheless it is supported as usual.
  31. 0.0.16
  32. - Critical fix for private "md5" selector issue (#135)
  33. 0.0.15
  34. - Fix 32-bit CTR block mode
  35. - Carthage support update
  36. - Mark as App-Extension-Safe API
  37. 0.0.14
  38. - hexString -> toHextString() #105
  39. - CTR (Counter mode)
  40. - Hex string is lowercase now
  41. - Carthage support
  42. - Tests update
  43. - Swift 2.0 support - overall update