EAKInfo

public struct EAKInfo: Codable

Encrypted Access Key information type to facilitate offline crypto

  • eak

    encrypted key used for encryption operations

    Declaration

    Swift

    public let eak: String
  • client ID of user authorizing access (typically the writer)

    Declaration

    Swift

    public let authorizerId: UUID
  • public key of the authorizer

    Declaration

    Swift

    public let authorizerPublicKey: ClientKey
  • client ID of user performing the signature (typically the writer)

    Declaration

    Swift

    public let signerId: UUID?
  • public signing key of the signer

    Declaration

    Swift

    public let signerSigningKey: SigningKey?