CHANGELOG 4.9 KB

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