diff options
| author | 0xhenrique <[email protected]> | 2025-12-08 07:02:24 +0000 |
|---|---|---|
| committer | 0xhenrique <[email protected]> | 2025-12-08 07:02:24 +0000 |
| commit | 9095085fcda48f2c78f408b685d5de360df4685a (patch) | |
| tree | 1f828b317d6936edd65842de9958c8d7d7361e2c | |
| parent | 3646ddab71ede860257182a7e772aad476533d39 (diff) | |
| -rw-r--r-- | README.org | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -62,6 +62,26 @@ Add to your Emacs configuration: ;; (setq esb-storage-backend 'plain) #+END_SRC +*** Asymmetric vs Symmetric Encryption + +By default, ESB uses symmetric encryption (passphrase only). If you want asymmetric encryption tied to your GPG key: + +#+BEGIN_SRC elisp +(setq esb-gpg-recipient "[email protected]") ; or GPG key ID +#+END_SRC + +If you already have a symmetrically encrypted file, reload and save to re-encrypt: +#+BEGIN_SRC elisp +M-x esb-reload-bookmarks +M-x esb-add-bookmark ; or edit any bookmark to trigger save +#+END_SRC + +To disable encryption entirely: +#+BEGIN_SRC elisp +(setq esb-storage-backend 'plain) +(setq esb-bookmarks-file "~/bookmarks/bookmarks.json") +#+END_SRC + *** Key Binding Setup ESB doesn't define any global key bindings by default to avoid conflicts. You need to define your own key bindings. |
