소스 검색

Link Playground

Marcin Krzyzanowski 9 년 전
부모
커밋
da86f36d59
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  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()