2009-09-16 13:03:35 +00:00
|
|
|
;;; org-crypt.el --- Public key encryption for org-mode entries
|
|
|
|
|
2010-04-07 14:26:10 +00:00
|
|
|
;; Copyright (C) 2007, 2009, 2010 Free Software Foundation, Inc.
|
2009-09-16 13:03:35 +00:00
|
|
|
|
|
|
|
;; Emacs Lisp Archive Entry
|
|
|
|
;; Filename: org-crypt.el
|
2011-03-07 14:27:39 +00:00
|
|
|
;; Version: 7.5
|
2009-09-16 13:03:35 +00:00
|
|
|
;; Keywords: org-mode
|
|
|
|
;; Author: John Wiegley <johnw@gnu.org>
|
|
|
|
;; Maintainer: Peter Jones <pjones@pmade.com>
|
|
|
|
;; Description: Adds public key encryption to org-mode buffers
|
|
|
|
;; URL: http://www.newartisans.com/software/emacs.html
|
|
|
|
;; Compatibility: Emacs22
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
;;
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Right now this is just a set of functions to play with. It depends
|
|
|
|
;; on the epg library. Here's how you would use it:
|
|
|
|
;;
|
|
|
|
;; 1. To mark an entry for encryption, tag the heading with "crypt".
|
|
|
|
;; You can change the tag to any complex tag matching string by
|
|
|
|
;; setting the `org-crypt-tag-matcher' variable.
|
|
|
|
;;
|
|
|
|
;; 2. Set the encryption key to use in the `org-crypt-key' variable,
|
|
|
|
;; or use `M-x org-set-property' to set the property CRYPTKEY to
|
|
|
|
;; any address in your public keyring. The text of the entry (but
|
|
|
|
;; not its properties or headline) will be encrypted for this user.
|
|
|
|
;; For them to read it, the corresponding secret key must be
|
|
|
|
;; located in the secret key ring of the account where you try to
|
|
|
|
;; decrypt it. This makes it possible to leave secure notes that
|
|
|
|
;; only the intended recipient can read in a shared-org-mode-files
|
|
|
|
;; scenario.
|
2010-05-08 05:09:16 +00:00
|
|
|
;; If the key is not set, org-crypt will default to symmetric encryption.
|
2009-09-16 13:03:35 +00:00
|
|
|
;;
|
|
|
|
;; 3. To later decrypt an entry, use `org-decrypt-entries' or
|
|
|
|
;; `org-decrypt-entry'. It might be useful to bind this to a key,
|
|
|
|
;; like C-c C-/. I hope that in the future, C-c C-r can be might
|
|
|
|
;; overloaded to also decrypt an entry if it's encrypted, since
|
|
|
|
;; that fits nicely with the meaning of "reveal".
|
|
|
|
;;
|
|
|
|
;; 4. To automatically encrypt all necessary entries when saving a
|
|
|
|
;; file, call `org-crypt-use-before-save-magic' after loading
|
|
|
|
;; org-crypt.el.
|
|
|
|
|
|
|
|
;;; Thanks:
|
|
|
|
|
|
|
|
;; - Carsten Dominik
|
|
|
|
;; - Vitaly Ostanin
|
|
|
|
|
|
|
|
(require 'org)
|
2009-09-16 23:12:15 +00:00
|
|
|
|
2010-07-15 20:26:51 +00:00
|
|
|
;;; Code:
|
|
|
|
|
2009-09-16 23:12:15 +00:00
|
|
|
(declare-function epg-decrypt-string "epg" (context cipher))
|
|
|
|
(declare-function epg-list-keys "epg" (context &optional name mode))
|
|
|
|
(declare-function epg-make-context "epg"
|
|
|
|
(&optional protocol armor textmode include-certs
|
|
|
|
cipher-algorithm digest-algorithm
|
|
|
|
compress-algorithm))
|
|
|
|
(declare-function epg-encrypt-string "epg"
|
|
|
|
(context plain recipients &optional sign always-trust))
|
2009-09-16 13:03:35 +00:00
|
|
|
|
|
|
|
(defgroup org-crypt nil
|
|
|
|
"Org Crypt"
|
2011-03-06 09:01:33 +00:00
|
|
|
:tag "Org Crypt"
|
|
|
|
:group 'org)
|
2009-09-16 13:03:35 +00:00
|
|
|
|
|
|
|
(defcustom org-crypt-tag-matcher "crypt"
|
2010-07-15 20:26:51 +00:00
|
|
|
"The tag matcher used to find headings whose contents should be encrypted.
|
|
|
|
|
|
|
|
See the \"Match syntax\" section of the org manual for more details."
|
2011-03-06 09:01:33 +00:00
|
|
|
:type 'string
|
|
|
|
:group 'org-crypt)
|
2009-09-16 13:03:35 +00:00
|
|
|
|
2011-03-06 09:01:33 +00:00
|
|
|
(defcustom org-crypt-key ""
|
2010-07-15 20:26:51 +00:00
|
|
|
"The default key to use when encrypting the contents of a heading.
|
|
|
|
|
|
|
|
This setting can also be overridden in the CRYPTKEY property."
|
2011-03-06 09:01:33 +00:00
|
|
|
:type 'string
|
|
|
|
:group 'org-crypt)
|
2009-09-16 13:03:35 +00:00
|
|
|
|
|
|
|
(defun org-crypt-key-for-heading ()
|
2010-07-15 20:26:51 +00:00
|
|
|
"Return the encryption key for the current heading."
|
2009-09-16 13:03:35 +00:00
|
|
|
(save-excursion
|
|
|
|
(org-back-to-heading t)
|
2010-04-01 11:11:54 +00:00
|
|
|
(or (org-entry-get nil "CRYPTKEY" 'selective)
|
2009-09-16 13:03:35 +00:00
|
|
|
org-crypt-key
|
|
|
|
(and (boundp 'epa-file-encrypt-to) epa-file-encrypt-to)
|
2010-05-08 05:09:16 +00:00
|
|
|
(message "No crypt key set, using symmetric encryption."))))
|
2009-09-16 13:03:35 +00:00
|
|
|
|
2011-02-07 23:18:37 +00:00
|
|
|
(defun org-encrypt-string (str crypt-key)
|
|
|
|
"Return STR encrypted with CRYPT-KEY."
|
|
|
|
;; Text and key have to be identical, otherwise we re-crypt.
|
|
|
|
(if (and (string= crypt-key (get-text-property 0 'org-crypt-key str))
|
|
|
|
(string= (sha1 str) (get-text-property 0 'org-crypt-checksum str)))
|
|
|
|
(get-text-property 0 'org-crypt-text str)
|
|
|
|
(let ((epg-context (epg-make-context nil t t)))
|
|
|
|
(epg-encrypt-string epg-context str (epg-list-keys epg-context crypt-key)))))
|
|
|
|
|
2009-09-16 13:03:35 +00:00
|
|
|
(defun org-encrypt-entry ()
|
|
|
|
"Encrypt the content of the current headline."
|
|
|
|
(interactive)
|
2009-09-16 23:12:15 +00:00
|
|
|
(require 'epg)
|
2009-09-16 13:03:35 +00:00
|
|
|
(save-excursion
|
|
|
|
(org-back-to-heading t)
|
2010-04-14 07:42:50 +00:00
|
|
|
(let ((start-heading (point)))
|
|
|
|
(forward-line)
|
|
|
|
(when (not (looking-at "-----BEGIN PGP MESSAGE-----"))
|
2011-01-26 15:21:25 +00:00
|
|
|
(let ((folded (outline-invisible-p))
|
2010-04-14 07:42:50 +00:00
|
|
|
(epg-context (epg-make-context nil t t))
|
|
|
|
(crypt-key (org-crypt-key-for-heading))
|
|
|
|
(beg (point))
|
|
|
|
end encrypted-text)
|
|
|
|
(goto-char start-heading)
|
|
|
|
(org-end-of-subtree t t)
|
|
|
|
(org-back-over-empty-lines)
|
|
|
|
(setq end (point)
|
|
|
|
encrypted-text
|
2011-02-07 23:18:37 +00:00
|
|
|
(org-encrypt-string (buffer-substring beg end) crypt-key))
|
2010-04-14 07:42:50 +00:00
|
|
|
(delete-region beg end)
|
|
|
|
(insert encrypted-text)
|
|
|
|
(when folded
|
|
|
|
(goto-char start-heading)
|
|
|
|
(hide-subtree))
|
|
|
|
nil)))))
|
2009-09-16 13:03:35 +00:00
|
|
|
|
|
|
|
(defun org-decrypt-entry ()
|
2010-03-21 07:16:08 +00:00
|
|
|
"Decrypt the content of the current headline."
|
2009-09-16 13:03:35 +00:00
|
|
|
(interactive)
|
2009-09-16 23:12:15 +00:00
|
|
|
(require 'epg)
|
2010-07-16 20:25:45 +00:00
|
|
|
(unless (org-before-first-heading-p)
|
|
|
|
(save-excursion
|
|
|
|
(org-back-to-heading t)
|
2011-01-26 17:46:29 +00:00
|
|
|
(let ((heading-point (point))
|
|
|
|
(heading-was-invisible-p
|
|
|
|
(save-excursion
|
|
|
|
(outline-end-of-heading)
|
|
|
|
(outline-invisible-p))))
|
|
|
|
(forward-line)
|
|
|
|
(when (looking-at "-----BEGIN PGP MESSAGE-----")
|
|
|
|
(let* ((end (save-excursion
|
|
|
|
(search-forward "-----END PGP MESSAGE-----")
|
|
|
|
(forward-line)
|
|
|
|
(point)))
|
|
|
|
(epg-context (epg-make-context nil t t))
|
2011-02-07 23:18:37 +00:00
|
|
|
(encrypted-text (buffer-substring-no-properties (point) end))
|
2011-01-26 17:46:29 +00:00
|
|
|
(decrypted-text
|
|
|
|
(decode-coding-string
|
|
|
|
(epg-decrypt-string
|
|
|
|
epg-context
|
2011-02-07 23:18:37 +00:00
|
|
|
encrypted-text)
|
2011-01-26 17:46:29 +00:00
|
|
|
'utf-8)))
|
|
|
|
;; Delete region starting just before point, because the
|
|
|
|
;; outline property starts at the \n of the heading.
|
|
|
|
(delete-region (1- (point)) end)
|
2011-02-07 23:18:37 +00:00
|
|
|
;; Store a checksum of the decrypted and the encrypted
|
|
|
|
;; text value. This allow to reuse the same encrypted text
|
|
|
|
;; if the text does not change, and therefore avoid a
|
|
|
|
;; re-encryption process.
|
|
|
|
(insert "\n" (propertize decrypted-text
|
|
|
|
'org-crypt-checksum (sha1 decrypted-text)
|
|
|
|
'org-crypt-key (org-crypt-key-for-heading)
|
|
|
|
'org-crypt-text encrypted-text))
|
2011-01-26 17:46:29 +00:00
|
|
|
(when heading-was-invisible-p
|
|
|
|
(goto-char heading-point)
|
|
|
|
(org-flag-subtree t))
|
|
|
|
nil))))))
|
2009-09-16 13:03:35 +00:00
|
|
|
|
|
|
|
(defun org-encrypt-entries ()
|
2010-03-21 07:16:08 +00:00
|
|
|
"Encrypt all top-level entries in the current buffer."
|
2009-09-16 13:03:35 +00:00
|
|
|
(interactive)
|
|
|
|
(org-scan-tags
|
|
|
|
'org-encrypt-entry
|
|
|
|
(cdr (org-make-tags-matcher org-crypt-tag-matcher))))
|
|
|
|
|
|
|
|
(defun org-decrypt-entries ()
|
2010-03-21 07:16:08 +00:00
|
|
|
"Decrypt all entries in the current buffer."
|
2009-09-16 13:03:35 +00:00
|
|
|
(interactive)
|
2010-04-01 11:11:54 +00:00
|
|
|
(org-scan-tags
|
2009-09-16 13:03:35 +00:00
|
|
|
'org-decrypt-entry
|
|
|
|
(cdr (org-make-tags-matcher org-crypt-tag-matcher))))
|
|
|
|
|
|
|
|
(defun org-crypt-use-before-save-magic ()
|
2010-07-15 20:26:51 +00:00
|
|
|
"Add a hook to automatically encrypt entries before a file is saved to disk."
|
2010-04-01 11:11:54 +00:00
|
|
|
(add-hook
|
|
|
|
'org-mode-hook
|
2009-09-16 13:03:35 +00:00
|
|
|
(lambda () (add-hook 'before-save-hook 'org-encrypt-entries nil t))))
|
2010-03-21 07:16:08 +00:00
|
|
|
|
2011-03-06 09:56:30 +00:00
|
|
|
;; FIXME Find a better way to encrypt Org auto-saved buffers?
|
2011-03-06 09:41:12 +00:00
|
|
|
;; When `auto-save-default' is non-nil, make sure entries are
|
|
|
|
;; encrypted before auto-saving
|
2011-03-06 09:56:30 +00:00
|
|
|
;; (when auto-save-default
|
|
|
|
;; (add-hook
|
|
|
|
;; 'org-mode-hook
|
|
|
|
;; (lambda () (add-hook 'auto-save-hook 'org-encrypt-entries nil t))))
|
|
|
|
|
2011-05-26 06:09:29 +00:00
|
|
|
(when (and (functionp 'daemonp)
|
|
|
|
(not (daemonp)) auto-save-default)
|
2011-03-06 09:56:30 +00:00
|
|
|
(message "Warning: turn auto-save-mode off in Org buffers containing crypted entries.")
|
2011-06-24 10:53:19 +00:00
|
|
|
(sit-for 1))
|
2011-03-06 09:41:12 +00:00
|
|
|
|
2010-03-21 07:16:08 +00:00
|
|
|
(add-hook 'org-reveal-start-hook 'org-decrypt-entry)
|
2010-04-01 11:11:54 +00:00
|
|
|
|
2009-09-16 13:03:35 +00:00
|
|
|
(provide 'org-crypt)
|
|
|
|
|
|
|
|
;; arch-tag: 8202ed2c-221e-4001-9e4b-54674a7e846e
|
|
|
|
|
|
|
|
;;; org-crypt.el ends here
|