-
The combined representation ( nonce || ciphertext || tag)
Declaration
Swift
public let combined: Data
-
The authentication tag
Declaration
Swift
public var tag: Data { get }
-
The ciphertext
Declaration
Swift
public var ciphertext: Data { get }
-
The Nonce
Declaration
Swift
public var nonce: ChaChaPoly.Nonce { get }
-
Undocumented
Declaration
Swift
@inlinable public init<D>(combined: D) throws where D : DataProtocol
-
Declaration
Swift
public init<C, T>(nonce: ChaChaPoly.Nonce, ciphertext: C, tag: T) throws where C : DataProtocol, T : DataProtocol