CHANGELOG 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. 0.6.3
  2. - Hotfix release
  3. - Fixes bitPadding() that breaks Digests calculations, introduced in 0.6.2
  4. 0.6.2
  5. - SHA performance improvements by using less Swift in Swift
  6. - Fix public access to all digests classes
  7. 0.6.1
  8. - Update tests.
  9. - New: RandomBytesSequence urandom values on Linux.
  10. - Throw appropriate error for AES with invalid input where padding is needed.
  11. - Improve performance, especially to SHA-1, SHA-2, PBKDF and related.
  12. - Set deployment targets for all platform. Fixes Carthage builds.
  13. - New: SHA-3 implementation (request #291)
  14. - SHA-1 conforms to Updatable protocol and may be calculated incrementally.
  15. - SHA-2 conforms to Updatable protocol and may be calculated incrementally.
  16. 0.6.0
  17. - Remove bridge() workaround for Linux (not needed)
  18. - make MD5() public
  19. - Update README
  20. - Convenience HMAC initializer for String input
  21. 0.6.0-beta2
  22. - SHA-2 fix #319
  23. - HashProtocol -> Digest and refactor
  24. - MD5 conforms to Updatable protocol and may be calculated incrementally
  25. - Cipher protocol accepts Collection input now
  26. 0.6.0-beta1
  27. - Swift 3 compatibility
  28. - Multiplatform, Single-scheme Xcode Project
  29. - Swift Package Manager fully supported (build and tests)
  30. - Improved Linux support
  31. - Travis configuration added
  32. - Public interface tests added
  33. - enum Authenticator -> protocol Authenticator
  34. - CRC -> Checksum
  35. - String.encrypt() returns hex string instead of Array<UInt8>
  36. - removed String.decrypt()
  37. - enum Hash -> struct Hash
  38. - Convenience initializer of Array of bytes with Hex string. Array<UInt8>(hex: "0xb1b1b2b2")
  39. - Fix reusability of ChaCha20 instance
  40. - Replace optional initializers with throwable initializers
  41. - Allow to set initial counter explicitly (AES block modes). RandomAccessCryptor.seek()
  42. 0.5.2
  43. - Fix AES-CTR incremental updates. #287
  44. - Fixed PBKDF2 tests. #295
  45. - Fixed assertion check in PKCS7. #288
  46. - Updatable protocol accept SequenceType in place of Array
  47. 0.5.1
  48. - Fixed PBKDF2 not taking key length parameter into account
  49. - Switch to Array<> in code
  50. 0.5
  51. - Added PBKDF1 https://tools.ietf.org/html/rfc2898#section-5.1
  52. - Added PBKDF2 https://tools.ietf.org/html/rfc2898#section-5.2
  53. - UpdatableCryptor protocol allows incremental encryption stream of data
  54. - CryptoSwift.playground
  55. - Docs update
  56. - Added reflection control to CRC-32 (Luís Silva)
  57. - Fix AES.init() (Pascal Pfiffner)
  58. 0.4.1
  59. - fix NoPadding()
  60. 0.4
  61. - Padding setup is now part of cipher constructor
  62. - Added PBKDF2 http://tools.ietf.org/html/rfc2898#section-5.2
  63. - Add BlockCipher protocol
  64. - Rename Cipher -> CipherProtocol
  65. - Remove build-frameworks.sh script
  66. - Keep sensitive data in memory with SecureBytes
  67. - Allows direct use of HMAC and Poly1305
  68. - README update
  69. - Fix missing Foundation import on Linux
  70. 0.3.1
  71. - replace deprecated Bit with new enum.
  72. 0.3
  73. - Swift 2.2 support
  74. - use generators for cipher block modes should reduce memory overload.
  75. - add OFB block mode
  76. - add PCBC block mode
  77. - String.decryptBase64ToString to decrypt Base64 encoded strings
  78. - broke up complicated expressions which were taking ages to compile
  79. 0.2.3
  80. - enable bitcode setting for Debug on an Apple TV
  81. - faster compilation times
  82. - improve padding functions
  83. 0.2.2
  84. - Fix ChaCha20 cipher
  85. - Replace for(;;) with for-in
  86. - Workaround for "NSString are not yet implicitly convertible to String" on Linux
  87. 0.2.1
  88. - Fix linux build
  89. - re-add umbrella header
  90. 0.2
  91. - Rabbit cipher (RFC4503)
  92. - Linux Swift support
  93. - Swift Package Manager support
  94. - tvOS support
  95. - Add optional seed to CRC
  96. - Add umbrella header (CryptoSwift.h)
  97. - Fix AES in CTR mode
  98. - Fix no padding support for CTR and CFB block modes
  99. - Fix access to AES.Error and ChaCha20.Error
  100. 0.1.1
  101. - Fix Cococapods package (missing Foundation integration)
  102. 0.1.0
  103. - Major performance improvements.
  104. - Transition from Optionals to throw error.
  105. - Replace enum Cipher with protocol for ciphers.
  106. - Added CRC16
  107. - Fixed AES CFB decryption
  108. - Drop internal "Foundation" dependency, nonetheless it is supported as usual.
  109. 0.0.16
  110. - Critical fix for private "md5" selector issue (#135)
  111. 0.0.15
  112. - Fix 32-bit CTR block mode
  113. - Carthage support update
  114. - Mark as App-Extension-Safe API
  115. 0.0.14
  116. - hexString -> toHextString() #105
  117. - CTR (Counter mode)
  118. - Hex string is lowercase now
  119. - Carthage support
  120. - Tests update
  121. - Swift 2.0 support - overall update