mirror of
https://github.com/bitwarden/help
synced 2026-01-04 17:43:14 +00:00
Release Updates (#474)
* Send Staging (#447) * - js for in-page tabs - send category early drafts of articles - send images * fix scrolling on tab * send web vault * mobile image * redone 'receive send' article * send from browser ext & mobile * send work * improvements to 'about' * send additions * so much send * lotsa send * all send all the time * ain't nothin but a send thang * cli * send cli * simple cli sends in /create-send/ * simple disable & delete in /send-lifespan/ * send desktop screenshots * send final cleanup * cli final cleanup * send edits * fix * send final touches * fixed links & non-send updates * new import message documentation, several import articles condensed to use tabs, U2F support for Edge, excluded domains article, remove in innacurate note on emergency accesss * Firefox Attachment Workflow + Date Picker for custom timestamps * safari attach file Send req * excluded domains addition * fix tab titles * release notes * unlock articles * link to status feed * small typos * test * updated release notes * lastpass article form fill rewrites * import to org & personal clarifications * send self-hosting, safari web extension edits, and release notes
This commit is contained in:
committed by
GitHub
parent
7b16aceea1
commit
535ea72847
@@ -8,10 +8,10 @@ tags: [import]
|
||||
order: 07
|
||||
---
|
||||
|
||||
Encrypted Exports provide a secure long-term storage option for Vault data backups. Vault data is encrypted using your account's Encryption Key.
|
||||
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.
|
||||
|
||||
{% callout warning %}
|
||||
[Rotating your account's encryption key]({% link _articles/account/account-encryption-key.md %}) will render an Encrypted Export impossible to decrypt. **If you rotate your account encryption key, replace the old backup with one that uses the new encryption key.**
|
||||
[Rotating your account's encryption key]({% link _articles/account/account-encryption-key.md %}) will render an Encrypted Export impossible to decrypt. **If you rotate your account encryption key, replace any old files with new one that use the new encryption key.**
|
||||
|
||||
Account Encryption Keys are unique to each Bitwarden user account, so you won't be able to import an Encrypted Export into a different account.
|
||||
{% endcallout %}
|
||||
@@ -42,29 +42,113 @@ Will look something like:
|
||||
|
||||
## Create an Encrypted Export
|
||||
|
||||
Downloading an Encrypted Export follows the same procedure as downloading a plaintext `.csv` or `.json` export:
|
||||
Creating an Encrypted Export follows the [normal export procedure]({% link _articles/account/export-your-data.md %}):
|
||||
|
||||
1. In the [Web Vault](https://vault.bitwarden.com){:target="\_blank"}, select **Tools** from the top navigation bar.
|
||||
3. Select **Export Vault** from the left-hand Tools menu.
|
||||
4. On the Export Vault page:
|
||||
- Select **.json (Encrypted)** from the **File Format** dropdown.
|
||||
- Enter your **Master Password**.
|
||||
5. Select the **Export Vault** button to download your Vault Export. You will be prompted to specify a location for download.
|
||||
<ul class="nav nav-tabs" id="myTab" role="tablist">
|
||||
<li class="nav-item" role="presentation">
|
||||
<a class="nav-link active" id="wvtab" data-target="#webvault" role="tab" aria-controls="webvault" aria-selected="true">Web Vault</a>
|
||||
</li>
|
||||
<li class="nav-item" role="presentation">
|
||||
<a class="nav-link" id="betab" data-target="#browserextension" role="tab" aria-controls="browserextension" aria-selected="false">Browser Extension</a>
|
||||
</li>
|
||||
<li class="nav-item" role="presentation">
|
||||
<a class="nav-link" id="desktab" data-target="#desktop" role="tab" aria-controls="desktop" aria-selected="false">Desktop</a>
|
||||
</li>
|
||||
<li class="nav-item" role="presentation">
|
||||
<a class="nav-link" id="mobtab" data-target="#mobile" role="tab" aria-controls="mobile" aria-selected="false">Mobile</a>
|
||||
</li>
|
||||
<li class="nav-item" role="presentation">
|
||||
<a class="nav-link" id="clitab" data-target="#cli" role="tab" aria-controls="cli" aria-selected="false">CLI</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab-content" id="clientsContent">
|
||||
<div class="tab-pane show active" id="webvault" role="tabpanel" aria-labelledby="wvtab">
|
||||
{% capture web_vault %}
|
||||
|
||||
For help downloading an Encrypted Export from any other client application, see [Export Vault Data]({% link _articles/account/export-your-data.md %}).
|
||||
#### Export from the Web Vault
|
||||
|
||||
To create an encrypted export of your personal Vault data from the Web Vault:
|
||||
|
||||
1. Select **Tools** from the top navigation bar.
|
||||
2. Select **Export Vault** from the left-hand Tools menu.
|
||||
3. On the Vault Export page, choose `.json (Encrypted)` for the **File Format**.
|
||||
4. Enter your **Master Password** and select the **Export Vault** button.
|
||||
|
||||
{% endcapture %}
|
||||
{{ web_vault | markdownify}}
|
||||
</div>
|
||||
<div class="tab-pane" id="browserextension" role="tabpanel" aria-labelledby="betab">
|
||||
{% capture browser_extension %}
|
||||
|
||||
#### Export from a Browser Extension
|
||||
|
||||
To create an encrypted export of your personal Vault data from a Browser Extension:
|
||||
|
||||
1. Open the {% icon fa-cogs %} **Settings** tab.
|
||||
2. Scroll down to the **Tools** section and select the **Export Vault** option.
|
||||
3. On the Export Vault view, choose `.json (Encrypted)` for the **File Format**.
|
||||
4. Enter your **Master Password** and select **Submit**.
|
||||
|
||||
{% endcapture %}
|
||||
{{ browser_extension | markdownify}}
|
||||
</div>
|
||||
<div class="tab-pane" id="desktop" role="tabpanel" aria-labelledby="desktab">
|
||||
{% capture desktop_info %}
|
||||
|
||||
#### Export from Desktop
|
||||
|
||||
To create an encrypted export of your personal Vault data from a Desktop app:
|
||||
|
||||
1. From the menu bar, navigate to **File** → **Export Vault**.
|
||||
2. In the Export Vault window, choose `.json (Encrypted)` for the **File Format**.
|
||||
3. Enter your **Master Password** and select the {% icon fa-download %} **Download** button.
|
||||
|
||||
{% endcapture %}
|
||||
{{ desktop_info | markdownify}}
|
||||
</div>
|
||||
<div class="tab-pane" id="mobile" role="tabpanel" aria-labelledby="mobtab">
|
||||
{% capture mobile_info %}
|
||||
|
||||
#### Export from Mobile
|
||||
|
||||
To create an encrypted export of your personal Vault data from a Mobile app:
|
||||
|
||||
1. Tap the {% icon fa-cogs %} **Settings** tab.
|
||||
2. Scroll down to the **Tools** section and tap the **Export Vault** option.
|
||||
3. On the Export Vault view, choose `.json (Encrypted)` for the **File Format**.
|
||||
4. Enter your **Master Password** and tap the **Export Vault** button.
|
||||
|
||||
{% endcapture %}
|
||||
{{ mobile_info | markdownify}}
|
||||
</div>
|
||||
<div class="tab-pane" id="cli" role="tabpanel" aria-labelledby="cliab">
|
||||
{% capture cli_info %}
|
||||
|
||||
#### Export from the CLI
|
||||
|
||||
To create an encrypted export of your personal Vault data from the CLI, use the `export` command with the specified option `--format json_encrypted`, for example:
|
||||
|
||||
```
|
||||
bw export my-master-password --output /users/me/documents/ --format json_encrypted
|
||||
```
|
||||
|
||||
For more detail, see our [CLI documentation]({% link _articles/miscellaneous/cli.md %}).
|
||||
|
||||
{% endcapture %}
|
||||
{{ cli_info | markdownify}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
## Import an Encrypted Export
|
||||
|
||||
Importing an Encrypted Export following the same procedure as importing a plaintext `.csv` or `.json` file:
|
||||
Importing an Encrypted Export follows the [normal import procedure]({% link _articles/importing/import-data.md %}), which can **only be done from the** [**Web Vault**](https://vault.bitwarden.com){:target="\_blank"}:
|
||||
|
||||
1. In the [Web Vault](https://vault.bitwarden.com){:target="\_blank"}, select **Tools** from the top navigation bar.
|
||||
1. In the Web Vault, select **Tools** from the top navigation bar.
|
||||
2. Select **Import Data** from the left-hand Tools menu.
|
||||
3. Select **Bitwarden (json)** as the format of your file to import.
|
||||
3. From the format dropdown, choose **Bitwarden (json)**.
|
||||
|
||||
{% callout success %}There is no import option specifically for Encrypted Exports. A handler will determine that the `.json` file is encrypted and decrypt using your account encryption key.{% endcallout %}
|
||||
5. Select the **Browse** button and add your file.
|
||||
{% callout success %}There is no import option specifically for Encrypted Exports. A handler will determine that the `.json` file is encrypted and attempt to decrypt the file using your [account's encryption key]({% link _articles/account/account-encryption-key.md %}).{% endcallout %}
|
||||
5. Select the **Choose File** button and add the file to import.
|
||||
|
||||
{% callout warning %}Import to Bitwarden can't check whether items in the file to import are duplicative of items in your Vault. This means that **importing multiple files will create duplicative** Vault items if an item is already in the Vault and in the file to import.{% endcallout %}
|
||||
6. Select the **Import Data** button to complete your import.
|
||||
|
||||
{% callout warning %}
|
||||
Importing data multiple times will create duplicates.
|
||||
{% endcallout %}
|
||||
|
||||
Reference in New Issue
Block a user