Skip to content

Commit

Permalink
fix: change shell command to generate masterkey
Browse files Browse the repository at this point in the history
  • Loading branch information
Guglielmo Carnemolla committed Jan 18, 2024
1 parent 976dd5f commit 64292af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/30_Encryption_configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ try {

#### How to generate a local master key using Shell Command
```shell
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 96 | head -n 1 > YOUR_KEY_PATH
LC_CTYPE=C tr -dc 'a-zA-Z0-9' < /dev/urandom | fold -w 96 | head -1
```

## Migration and change of the configurations
Expand Down

0 comments on commit 64292af

Please sign in to comment.