diff --git a/README.md b/README.md index b27a4739..b3ffc7a7 100644 --- a/README.md +++ b/README.md @@ -37,4 +37,4 @@ redirect_from: /blog/10-tips-choosing-password-manager-for-teams/ # Contribute -Article contributions are welcome! Please commit any pull requests against the `master` branch. +Article contributions are welcome! Please commit any pull requests against the `master` branch. Please see [`CONTRIBUTING.md`](CONTRIBUTING.md) for more info. diff --git a/_articles/account/export-your-data.md b/_articles/account/export-your-data.md index f99fb954..906ae2fa 100644 --- a/_articles/account/export-your-data.md +++ b/_articles/account/export-your-data.md @@ -5,7 +5,7 @@ categories: [import-export] featured: false popular: false tags: [export, accounts, csv] -order: 06 +order: 07 --- You can export your personal Vault data from any client application, or export an Organization Vault from the Web Vault or CLI. Exports can be downloaded as plaintext `.json` or `.csv` files, or as a `.json` [encrypted export]({% link _articles/importing/encrypted-export.md %}). diff --git a/_articles/importing/condition-bitwarden-import.md b/_articles/importing/condition-bitwarden-import.md index 7393a3ad..dae59272 100644 --- a/_articles/importing/condition-bitwarden-import.md +++ b/_articles/importing/condition-bitwarden-import.md @@ -5,7 +5,7 @@ categories: [import-export] featured: true popular: false tags: [import] -order: 08 +order: 09 --- This article defines the format you should use when manually conditioning a `.csv` or `.json` for import into Bitwarden. This format is identical to that used by `.csv` or `.json` files created by [Exporting your Bitwarden Vault]({% link _articles/account/export-your-data.md %}). diff --git a/_articles/importing/encrypted-export.md b/_articles/importing/encrypted-export.md index a84e67ee..c2aaab7f 100644 --- a/_articles/importing/encrypted-export.md +++ b/_articles/importing/encrypted-export.md @@ -5,7 +5,7 @@ categories: [import-export] featured: true popular: false tags: [import] -order: 07 +order: 08 --- Vault data can be [exported]({% link _articles/account/export-your-data.md %}) in an encrypted JSON file. These exports are encrypted using your [account's encryption key]({% link _articles/account/account-encryption-key.md %}), which are generated on account creation and unique to each Bitwarden user account. diff --git a/_articles/importing/import-data.md b/_articles/importing/import-data.md index bb03801e..95692c0e 100644 --- a/_articles/importing/import-data.md +++ b/_articles/importing/import-data.md @@ -16,6 +16,7 @@ For a full list of supported import formats, see [What file formats does Bitward - [Import from 1Password]({% link _articles/importing/import-from-1password.md %}) - [Import from Firefox]({% link _articles/importing/import-from-firefox.md %}) - [Import from Google Chrome]({% link _articles/importing/import-from-chrome.md %}) +- [Import from Password Safe]({% link _articles/importing/import-from-passwordsafe.md %}) ## Import to your Personal Vault diff --git a/_articles/importing/import-from-passwordsafe.md b/_articles/importing/import-from-passwordsafe.md new file mode 100644 index 00000000..2d4a282a --- /dev/null +++ b/_articles/importing/import-from-passwordsafe.md @@ -0,0 +1,55 @@ +--- +layout: article +title: Import Data from Password Safe +categories: [import-export] +featured: true +popular: false +tags: [import, passwordsafe] +order: 06 +--- + +Use this article for help exporting data from Password Safe and importing into Bitwarden. Password Safe (V8) currently only supports exporting as `.csv` file. Older versions also supported `.xml`. + +## Export from Password Safe + +Complete the following steps to export data from the Password Safe Desktop App: + +1. Open Password Safe 8 and open the **Extras** menu from the upper left corner. + +2. Locate the **Export** option on the left-hand side and then choose **Passwords**. + +3. For the type please select `CSV` and enter a path to save the exported file. Leave the encoding at UTF-8. + {% image /importing/passwordsafeV8-export.png Export from Desktop App %} + +4. Click on the big gray arrow on the right to proceed to the export settings screen + +5. Set the separating character to **Semicolon** +6. Set the text qualifier to **`"`**(double quote) +7. Check the checkbox to keep the column headers + {% image /importing/passwordsafeV8-exportsettings.png Export settings screen from Desktop App %} + +8. Click **Finish** to start the export. + {% callout warning %}Please note that Password Safe will export a `.csv` for **every** category you have and not just a single `.csv`. + {% endcallout %} + +## Prepare exported file before import +Currently we do not offer a specific importer for this type of file. + +To prepare the exported file for import, please follow the instructions in this guide: [Condition a Bitwarden .csv or .json]({% link _articles/importing/condition-bitwarden-import.md %}) + +## Import to Bitwarden + +Complete the following steps to import data to your Bitwarden personal Vault (for help importing to an Organization Vault, see [Import Items to an Organization]({% link _articles/organizations/import-to-org.md %})): + +1. Log in to the [Web Vault](https://vault.bitwarden.com){:target="\_blank"}. +2. Select **Tools** from the top navigation bar. +3. Select **Import Data** from the left Tools menu. +4. Select **Bitwarden (csv)** from the format dropdown. +5. Select the **Browse...** button and select the file you prepared in a previous step. +6. Select the **Import Data** button to complete your import. + +{% callout warning %} +Importing data multiple times will create duplicates. +{% endcallout %} + +Congratulations! You have just transferred your data from Password Safe into Bitwarden. diff --git a/images/importing/passwordsafeV8-export.png b/images/importing/passwordsafeV8-export.png new file mode 100644 index 00000000..48b6172c Binary files /dev/null and b/images/importing/passwordsafeV8-export.png differ diff --git a/images/importing/passwordsafeV8-exportsettings.png b/images/importing/passwordsafeV8-exportsettings.png new file mode 100644 index 00000000..ca915c33 Binary files /dev/null and b/images/importing/passwordsafeV8-exportsettings.png differ