Ory.Model.PinConfig (ory_client v1.22.63)

Copy Markdown

PINConfig is the per-key PIN state. The pin_secret field holds the at-rest ciphertext; the plaintext exists only transiently in memory during verification and is cleared once the key locks.

Summary

Types

t()

@type t() :: %Ory.Model.PinConfig{
  created_at: DateTime.t() | nil,
  failed_attempts: integer() | nil,
  pin_secret: String.t() | nil,
  rotated_at: DateTime.t() | nil
}

Functions

decode(value)