CHANGELOG 5.1 KB

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