Skip to main content

Emergency Access & Recovery

Argon provides two distinct safety nets: emergency access (a dead-man switch that grants a contact access to your vaults after prolonged inactivity) and recovery keys (a personal escape hatch for regaining access when you lose your master password).

How It Works


Escrow Key Wrapping

The security model ensures the server never has access to vault contents, even during emergency activation.

Setup (Client-Side)

Activation (Server-Side)

The server orchestrates the handoff but never possesses the plaintext vault keys. The escrow private key is encrypted to the contact’s credentials during the invite acceptance flow.

Configuration

Modify or Disable

  • Modify — The user can change the contact, countdown, or vault selection at any time. Changing the vault selection requires re-wrapping escrow envelopes.
  • Disable — Removes the emergency config, deletes the escrow account and all escrow envelopes.
  • Manual trigger — Admins can manually trigger emergency access for testing or urgent situations.

Email Delivery

Emergency invite emails are sent via the server’s SMTP configuration:
  • SMTP must be configured via AdminService.SetSMTPConfig (admin-only).
  • SMTP must be confirmed via AdminService.TestSMTPConnection.
  • If SMTP is not configured (airgapped environment), the admin must manually deliver the invite code to the emergency contact.
The Confirmed flag resets whenever any SMTP field is changed, forcing re-verification before emails can be sent.

Dormant Escrow Accounts

The escrow account created during emergency setup is a dormant user — it has key pairs but no auth verifier, meaning it cannot be logged into directly. Its username follows the pattern __escrow_{userID}_{random} and it exists solely to hold the X25519 public key that vault DEKs are wrapped to. When the emergency triggers, the server updates the escrow account’s identity to match the contact’s email and issues an invite. The contact registers using the invite, inherits the escrow envelopes, and gains access to the designated vaults.

Recovery Keys

Separate from emergency access, every Argon user has a recovery key envelope — a personal backup mechanism for regaining access when the master password is lost.

How Recovery Keys Work

Key Properties

  • The recovery key is shown exactly once during registration. Argon does not store it.
  • The recovery key envelope is stored on the server as an opaque encrypted blob — the server cannot decrypt it.
  • Using a recovery key invalidates the old one and generates a new one (preventing reuse after compromise).
  • Recovery keys are independent of emergency access — they let the same user recover their own account, not grant access to someone else.

Recovery Key vs Emergency Access


Audit Trail