KeyPair

public struct KeyPair

A data type holding the public and private keys as Base64URL encoded strings, used for encryption and signing operations. Only the publicKey is sent to the E3db service.

  • The public key from a generated keypair as a Base64URL encoded string.

    Declaration

    Swift

    public let publicKey: String
  • The private key from a generated keypair as a Base64URL encoded string.

    Declaration

    Swift

    public let secretKey: String