borg repo-create

borg [common options] repo-create [options]

options

--other-repo SRC_REPOSITORY

reuse the key material from the other repository

--from-borg1

other repository is Borg 1.x

-e ENCRYPTION, --encryption ENCRYPTION

select cipher / AE algorithm: ‘none’, ‘authenticated’, ‘aes256-ocb’ or ‘chacha20-poly1305’ (required)

-i HASH, --id-hash HASH

select the id hash function: ‘sha256’ (default) or ‘blake3’. The ‘none’ encryption only supports ‘sha256’.

--key-location LOCATION

where to store the key: ‘repokey’ (in the repository, default) or ‘keyfile’ (in the local keys directory). Ignored for the ‘none’ mode (which has no key).

--copy-crypt-key

copy the crypt_key (used for authenticated encryption) from the key of the other repository (default: new random key).

Common options

Description

This command creates a new, empty repository. A repository is a borgstore store containing the deduplicated data from zero or more archives.

Repository creation can be quite slow for some kinds of stores (e.g. for sftp:) - this is due to borgstore pre-creating all directories needed, making usage of the store faster.

Encryption mode TL;DR

The encryption mode can only be configured when creating a new repository - you can neither configure it on a per-archive basis nor change the mode of an existing repository. This example will likely NOT give optimum performance on your machine (performance tips will come below):

borg repo-create --encryption aes256-ocb --key-location repokey

Borg will:

  1. Ask you to come up with a passphrase.

  2. Create a borg key (which contains some random secrets. See Key files).

  3. Derive a “key encryption key” from your passphrase

  4. Encrypt and sign the key with the key encryption key

  5. Store the encrypted borg key inside the repository directory (in the repo config). This is why it is essential to use a secure passphrase.

  6. Encrypt and sign your backups to prevent anyone from reading or forging them unless they have the key and know the passphrase. Make sure to keep a backup of your key outside the repository - do not lock yourself out by “leaving your keys inside your car” (see borg key export). The encryption is done locally - if you use a remote repository, the remote machine never sees your passphrase, your unencrypted key or your unencrypted files. Chunking and ID generation are also based on your key to improve your privacy.

  7. Use the key when extracting files to decrypt them and to verify that the contents of the backups have not been accidentally or maliciously altered.

Picking a passphrase

Make sure you use a good passphrase. Not too short, not too simple. The real encryption / decryption key is encrypted with / locked by your passphrase. If an attacker gets your key, they cannot unlock and use it without knowing the passphrase.

Be careful with special or non-ASCII characters in your passphrase:

  • Borg processes the passphrase as Unicode (and encodes it as UTF-8), so it does not have problems dealing with even the strangest characters.

  • BUT: that does not necessarily apply to your OS/VM/keyboard configuration.

So better use a long passphrase made from simple ASCII characters than one that includes non-ASCII stuff or characters that are hard or impossible to enter on a different keyboard layout.

You can change your passphrase for existing repositories at any time; it will not affect the encryption/decryption key or other secrets.

Choosing a crypto suite

Depending on your hardware, hashing and crypto performance may vary widely. The easiest way to find out what is fastest is to run borg benchmark cpu.

A crypto suite is selected by three orthogonal options:

--encryption (required) selects the cipher / authenticated-encryption algorithm:

  • aes256-ocb: AES256 in OCB mode (encryption + authentication).

  • chacha20-poly1305: ChaCha20 + Poly1305 (encryption + authentication).

  • authenticated: no encryption, but still authenticates your data (tamper detection).

  • none: no encryption and no authentication (see the warning below).

--id-hash selects the id hash function (used for chunk ids and authentication):

  • sha256 (default): HMAC-SHA-256 (or plain SHA-256 for the none encryption).

  • blake3: BLAKE3. Often faster on CPUs without SHA hardware acceleration.

The none encryption has no key, so it only supports the sha256 id hash.

--key-location selects where the key is stored (orthogonal to the crypto suite):

  • repokey (default): the key is stored in the repository (under keys/). Pick this if you want ease-of-use and “passphrase” security is good enough.

  • keyfile: the key is stored in your home directory (in ~/.config/borg/keys). Pick this if you want “passphrase and having-the-key” security.

You can move the key between these locations later with borg key change-location. This also applies to the authenticated encryption: it does not encrypt your data, but it still has a key (used for the id hash and authentication), so --key-location selects where that key is stored, just like for the encrypted suites. --key-location is only ignored for the none encryption, which has no key at all.

none encryption uses no encryption and no authentication. You are advised NOT to use this as it would expose you to a Denial-of-Service risk (due to how the HashIndex works) and other issues (confidentiality, tampering, …) in case of malicious activity in the repository.

If you do not want to encrypt the contents of your backups, but still want to detect malicious tampering, use --encryption authenticated. It is like an encrypted suite minus the data encryption. To normally work with authenticated repositories, you will need the passphrase, but there is an emergency workaround; see BORG_WORKAROUNDS=authenticated_no_key docs.

Examples

# Local repository
$ export BORG_REPO=/path/to/repo
# Recommended AEAD cryptographic modes (key stored in the repository by default)
$ borg repo-create --encryption=aes256-ocb
$ borg repo-create --encryption=chacha20-poly1305
# No encryption (not recommended)
$ borg repo-create --encryption=authenticated
$ borg repo-create --encryption=none

# --encryption (the cipher / AE algorithm) and --id-hash (the id hash function) are
# chosen independently. --id-hash defaults to sha256; use blake3 if it is faster on
# your hardware (run 'borg benchmark cpu' to find out). The 'none' encryption only
# supports the sha256 id hash.
$ borg repo-create --encryption=aes256-ocb --id-hash=blake3
$ borg repo-create --encryption=chacha20-poly1305 --id-hash=blake3
$ borg repo-create --encryption=authenticated --id-hash=blake3

# Where the key is stored (--key-location) is also chosen independently.
# --key-location defaults to repokey.
# repokey: stores the encrypted key inside the repository
$ borg repo-create --encryption=aes256-ocb --key-location=repokey
# keyfile: stores the encrypted key in the config dir's keys/ subdir
# (e.g. ~/.config/borg/keys/ on Linux, ~/Library/Application Support/borg/keys/ on macOS)
$ borg repo-create --encryption=aes256-ocb --key-location=keyfile