CHANGELOG 5.1 KB

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