Skip to main content

Import & Export

Argon imports credentials from 10 password managers and browsers with automatic format detection and deduplication. Exports are available in Argon’s native format and Bitwarden-compatible format.

Supported Import Formats

Auto-Detection

Set the format to “Auto” and Argon will examine the file extension, internal structure, and CSV headers to determine the source format automatically. The detection logic:
  1. .1pux extension → 1Password
  2. .zip → inspect contents for export.data (1Password) or credentials.csv (Dashlane)
  3. .xml → check for <KeePassFile> root element (KeePass)
  4. .json → check for items + folders keys (Bitwarden)
  5. .csv → inspect header row to identify the source by unique column names

Import Flow

  1. Select format — Choose the source password manager or “Auto” for detection.
  2. Select file — File picker filtered to .csv, .json, .xml, .zip, .1pux.
  3. Preview — Argon parses the file and displays a table of entries that will be imported: title, URL, username, type, folder, and whether TOTP is present.
  4. Select target vault — Choose which vault to import into.
  5. Import — Argon encrypts each entry client-side and creates it in the vault.

Automatic Deduplication

Argon automatically skips entries that already exist in the target vault. Before importing, it loads and decrypts all existing entries in the vault and builds a fingerprint index. Each imported entry is checked against this index — duplicates are skipped silently and counted in the result.

Fingerprint Matching

Deduplication uses type-specific fingerprints with normalized (lowercased, trimmed) fields:

URL Normalization

URLs are normalized before comparison:
  • Protocol stripped (https:// and http:// are equivalent)
  • www. prefix stripped (www.github.com equals github.com)
  • Hostname extracted (path, query, and fragment are ignored)
  • Case-insensitive
This means https://www.GitHub.com/login and http://github.com/settings are considered the same URL for dedup purposes.

Batch Dedup

Deduplication also works within the import batch itself. If the import file contains the same entry twice, only the first occurrence is imported. The fingerprint index is updated after each successful import so subsequent rows in the same file are caught.

What Dedup Does NOT Do

  • Does not merge — If an existing entry has the same title/URL/username but a different password, the import is still skipped. Argon does not overwrite existing credentials.
  • Does not compare passwords — Only metadata fields are used for matching, never the password itself.
  • Does not cross vaults — Dedup only checks the target vault, not other vaults the user has access to.

Imported Data

Each imported entry is mapped to Argon’s internal schema:

Entry Type Mapping


Folder Preservation

Import preserves the folder hierarchy from the source. Nested folders are created recursively:
If a folder with the same name already exists at the same level, the import reuses it rather than creating a duplicate.

Export

Argon exports vault contents in four formats:

Export Flow

  1. Select the vault to export.
  2. Choose the export format.
  3. Choose the output file location.
  4. Argon decrypts all entries client-side and writes them to the file.

Security Warning

Exported files contain unencrypted passwords in plaintext. The export dialog displays a warning before proceeding. Treat exported files as highly sensitive — delete them after use and never store them in unencrypted locations.