[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] Automatically encrypt on save, decrypt on open?
From: |
John Kitchin |
Subject: |
Re: [O] Automatically encrypt on save, decrypt on open? |
Date: |
Thu, 13 Aug 2015 10:46:54 -0400 |
see org-crypt http://orgmode.org/worg/org-tutorials/encrypting-files.html
Here is the setup I have that worked when I tried it last ;)
;; encryption
(require 'epa-file)
(unless (memq epa-file-handler file-name-handler-alist)
(epa-file-enable))
(require 'org-crypt)
(org-crypt-use-before-save-magic)
(setq org-tags-exclude-from-inheritance (quote ("crypt")))
;; GPG key to use for encryption
;; Either the Key ID or set to nil to use symmetric encryption.
(setq org-crypt-key "some-key")
Peter Davis writes:
> I'd like to store information in an org page that gets automatically
> encrypted when I save it, and decrypted when I open it. Is
> there some built-in functionality or hooks for this?
>
> Thank you,
> -pd
--
Professor John Kitchin
Doherty Hall A207F
Department of Chemical Engineering
Carnegie Mellon University
Pittsburgh, PA 15213
412-268-7803
@johnkitchin
http://kitchingroup.cheme.cmu.edu
- [O] Automatically encrypt on save, decrypt on open?, Peter Davis, 2015/08/13
- Re: [O] Automatically encrypt on save, decrypt on open?,
John Kitchin <=
- Re: [O] Automatically encrypt on save, decrypt on open?, Michael Strey, 2015/08/13
- Re: [O] Automatically encrypt on save, decrypt on open?, Eric S Fraga, 2015/08/13
- Re: [O] Automatically encrypt on save, decrypt on open?, Jorge A. Alfaro-Murillo, 2015/08/14