File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1+ # 0.1.1 (27 August 2020)
2+
3+ This is a bugfix release that fixes incorrect padding applied to files of a certain size during decryption.
4+
5+ ** Merged pull requests:**
6+
7+ - Fix padding in ` ECMA376Agile.swift ` ([ #1 ] ( https://github.com/CoreOffice/CryptoOffice/pull/1 ) ) via [ @MaxDesiatov ] ( https://github.com/MaxDesiatov )
8+
19# 0.1.0 (31 May 2020)
210
311Initial release of CryptoOffice.
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Using CryptoOffice is easy:
14141 . Add ` import CryptoOffice ` at the top of a relevant Swift source file.
15152 . Use ` CryptoOfficeFile(path: String) ` to create a new instance with a path to your encrypted file.
16163 . Call ` decrypt(password: String) ` on it to get decrypted data.
17- 4 . Parse the decrypted data with a library appropriate for that format
17+ 4 . Parse the decrypted data with a library appropriate for that format
1818 ([ CoreXLSX] ( https://github.com/CoreOffice/CoreXLSX ) in this example).
1919
2020``` swift
@@ -62,7 +62,7 @@ easy as adding it to the `dependencies` value of your `Package.swift`.
6262``` swift
6363dependencies: [
6464 .package (url : " https://github.com/CoreOffice/CryptoOffice.git" ,
65- .upToNextMinor (from : " 0.1.0 " ))
65+ .upToNextMinor (from : " 0.1.1 " ))
6666]
6767```
6868
You can’t perform that action at this time.
0 commit comments