Browse Source

Link Playground

Marcin Krzyzanowski 9 năm trước cách đây
mục cha
commit
da86f36d59
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  1. 5 0
      README.md

+ 5 - 0
README.md

@@ -144,6 +144,9 @@ You can use [Swift Package Manager](https://swift.org/package-manager/) and spec
 * [Rabbit](#rabbit)
 * [Advanced Encryption Standard (AES)](#aes)
 
+
+also check [Playground](/CryptoSwift.playground/Contents.swift)
+
 #####Basics
 
 ```swift
@@ -273,6 +276,8 @@ ciphertext += try encryptor.update(withBytes: "ornare vel eu leo.".utf8.map({$0}
 ciphertext += try encryptor.finish()
 ```
 
+See [Playground](/CryptoSwift.playground/Contents.swift) for sample code to work with streams.
+
 Check this helper functions to work with **Base64** encoded data directly:
 - .decryptBase64ToString()
 - .toBase64()