CryptoTokenKit Changes
CryptoTokenKit
Removed TKSmartCardProtocol.value
Added TKSmartCardProtocol.init(rawValue: UInt)
Modified TKSmartCardATR.init(bytes: NSData!)
| Declaration | |
|---|---|
| From | init(bytes bytes: NSData!) |
| To | init!(bytes bytes: NSData!) |
Modified TKSmartCardATR.init(source: (() -> Int32)!)
| Declaration | |
|---|---|
| From | init(source source: (() -> Int32)!) |
| To | init!(source source: (() -> Int32)!) |
Modified TKSmartCardProtocol [struct]
| Declaration | Protocols | |
|---|---|---|
| From | struct TKSmartCardProtocol : RawOptionSet {
init(_ value: UInt)
var value: UInt
static var None: TKSmartCardProtocol { get }
static var T0: TKSmartCardProtocol { get }
static var T1: TKSmartCardProtocol { get }
static var T15: TKSmartCardProtocol { get }
static var Any: TKSmartCardProtocol { get }
} | RawOptionSet |
| To | struct TKSmartCardProtocol : RawOptionSetType {
init(_ rawValue: UInt)
init(rawValue rawValue: UInt)
static var None: TKSmartCardProtocol { get }
static var T0: TKSmartCardProtocol { get }
static var T1: TKSmartCardProtocol { get }
static var T15: TKSmartCardProtocol { get }
static var Any: TKSmartCardProtocol { get }
} | RawOptionSetType |
Modified TKSmartCardProtocol.init(_: UInt)
| Declaration | |
|---|---|
| From | init(_ value: UInt) |
| To | init(_ rawValue: UInt) |
Modified TKErrorDomain
| Declaration | |
|---|---|
| From | let TKErrorDomain: NSString! |
| To | let TKErrorDomain: String |