forked from svdo/swift-SecurityExtensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCHANGELOG
More file actions
51 lines (40 loc) · 1.28 KB
/
CHANGELOG
File metadata and controls
51 lines (40 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Version 3.0.2
=============
Fixed compiler warning in SecKey+Crypt.swift.
Version 3.0.1
=============
Changed deployment target from iOS 9.3 to iOS 9.0.
Version 3.0.0
=============
Code is now Swift 3.0.
Version 2.1.1
=============
Changed implementation of hexByteArray so that it is no longer recursive.
Version 2.1.0
=============
Added static function `SecKey.keychainTag(forKeyData:)` to compute the tag if you don't have the key itself,
only the `keyData`.
Version 2.0.0
=============
API changes:
- Renamed String extension `toByteArray()` to `hexByteArray()`
- Renamed byte array extension `toHexString()` to `hexString()`
Issues fixed:
- Fixed issue with encrypt en decrypt: can now also process larger quantities of data
Version 1.2.0
=============
- Added ability to convert string with hexadecimal representation of byte
array back into a byte array
Version 1.1.0
=============
- Added ability to recreate a SecKey from its data.
Version 1.0.2
=============
- Added ability to load a SecKey from the Keychain based on a tag
- Fixed documentation: type of errors thrown by `SecKey.generateKeyPair()`
Version 1.0.1
=============
Documentation update: everything is documented now.
Version 1.0.0
=============
Initial release containing extensions for SecIdentity, SecCertificate and SecKey.