Browse Source

Release 0.0.15

Marcin Krzyżanowski 10 years ago
parent
commit
94141c50f9
2 changed files with 24 additions and 7 deletions
  1. 1 1
      CryptoSwift.podspec
  2. 23 6
      README.md

+ 1 - 1
CryptoSwift.podspec

@@ -1,6 +1,6 @@
 Pod::Spec.new do |s|
 Pod::Spec.new do |s|
   s.name         = "CryptoSwift"
   s.name         = "CryptoSwift"
-  s.version      = "0.0.14"
+  s.version      = "0.0.15"
   s.summary      = "Cryptography in Swift. SHA, MD5, CRC, Poly1305, HMAC, ChaCha20, AES."
   s.summary      = "Cryptography in Swift. SHA, MD5, CRC, Poly1305, HMAC, ChaCha20, AES."
   s.description  = "Cryptography functions and helpers for Swift implemented in Swift. SHA, MD5, CRC, Poly1305, HMAC, ChaCha20, AES."
   s.description  = "Cryptography functions and helpers for Swift implemented in Swift. SHA, MD5, CRC, Poly1305, HMAC, ChaCha20, AES."
   s.homepage     = "https://github.com/krzyzanowskim/CryptoSwift"
   s.homepage     = "https://github.com/krzyzanowskim/CryptoSwift"

+ 23 - 6
README.md

@@ -1,6 +1,18 @@
 #CryptoSwift
 #CryptoSwift
+
 Crypto related functions and helpers for [Swift](https://developer.apple.com/swift/) implemented in Swift. ([#PureSwift](https://twitter.com/hashtag/pureswift))
 Crypto related functions and helpers for [Swift](https://developer.apple.com/swift/) implemented in Swift. ([#PureSwift](https://twitter.com/hashtag/pureswift))
 
 
+-------
+<p align="center">
+    <a href="#features">Features</a> &bull;
+    <a href="#contribution">Contribution</a> &bull;
+    <a href="#installation">Installation</a> &bull;
+    <a href="#usage">Usage</a> &bull; 
+    <a href="#author">Author</a> &bull;
+    <a href="#changelog">Changelog</a>
+</p>
+-------
+
 ##Requirements
 ##Requirements
 Good mood
 Good mood
 
 
@@ -9,7 +21,7 @@ Good mood
 - Easy to use
 - Easy to use
 - Convenience extensions
 - Convenience extensions
 
 
-###What implemented?
+##What implemented?
 
 
 #### Hash
 #### Hash
 - [MD5](http://tools.ietf.org/html/rfc1321)
 - [MD5](http://tools.ietf.org/html/rfc1321)
@@ -37,10 +49,10 @@ Good mood
 #####Data padding
 #####Data padding
 - [PKCS#7](http://tools.ietf.org/html/rfc5652#section-6.3)
 - [PKCS#7](http://tools.ietf.org/html/rfc5652#section-6.3)
 
 
-###Why
+##Why
 [Why?](https://github.com/krzyzanowskim/CryptoSwift/issues/5) [Because I can](https://github.com/krzyzanowskim/CryptoSwift/issues/5#issuecomment-53379391).
 [Why?](https://github.com/krzyzanowskim/CryptoSwift/issues/5) [Because I can](https://github.com/krzyzanowskim/CryptoSwift/issues/5#issuecomment-53379391).
 
 
-###Contribution
+##Contribution
 
 
 For latest version, please check **develop** branch. This is latest development version that will be merged into **master** branch at some point.
 For latest version, please check **develop** branch. This is latest development version that will be merged into **master** branch at some point.
 
 
@@ -186,8 +198,10 @@ let data  = NSData.withBytes([0x01,0x02,0x03])
 let bytes:[UInt8] = data.arrayOfBytes()
 let bytes:[UInt8] = data.arrayOfBytes()
 ```
 ```
 
 
-##Contact
-Marcin Krzyżanowski [@krzyzanowskim](http://twitter.com/krzyzanowskim)
+##Author
+[Marcin Krzyżanowski](http://www.krzyzanowskim.com)
+
+T: [@krzyzanowskim](http://twitter.com/krzyzanowskim)
 
 
 ##License
 ##License
 
 
@@ -204,7 +218,10 @@ Permission is granted to anyone to use this software for any purpose, including
 
 
 ##Changelog
 ##Changelog
 
 
-This is not full changelog
+0.0.15
+- Fix 32-bit CTR block mode
+- Carthage support update
+- Mark as App-Extension-Safe API
 
 
 0.0.14
 0.0.14
 - hexString -> toHextString() #105
 - hexString -> toHextString() #105