We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60715ae commit da86f36Copy full SHA for da86f36
README.md
@@ -144,6 +144,9 @@ You can use [Swift Package Manager](https://swift.org/package-manager/) and spec
144
* [Rabbit](#rabbit)
145
* [Advanced Encryption Standard (AES)](#aes)
146
147
+
148
+also check [Playground](/CryptoSwift.playground/Contents.swift)
149
150
#####Basics
151
152
```swift
@@ -273,6 +276,8 @@ ciphertext += try encryptor.update(withBytes: "ornare vel eu leo.".utf8.map({$0}
273
276
ciphertext += try encryptor.finish()
274
277
```
275
278
279
+See [Playground](/CryptoSwift.playground/Contents.swift) for sample code to work with streams.
280
281
Check this helper functions to work with **Base64** encoded data directly:
282
- .decryptBase64ToString()
283
- .toBase64()
0 commit comments