2009-09-16 09:03:35 -04:00
|
|
|
;;; org-crypt.el --- Public key encryption for org-mode entries
|
|
|
|
|
2012-01-04 09:47:43 -05:00
|
|
|
;; Copyright (C) 2007, 2009-2012 Free Software Foundation, Inc.
|
2009-09-16 09:03:35 -04:00
|
|
|
|
|
|
|
;; Emacs Lisp Archive Entry
|
|
|
|
;; Filename: org-crypt.el
|
|
|
|
;; 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 01:09:16 -04:00
|
|
|
;; If the key is not set, org-crypt will default to symmetric encryption.
|
2009-09-16 09:03:35 -04: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 19:12:15 -04:00
|
|
|
|
2010-07-15 16:26:51 -04:00
|
|
|
;;; Code:
|
|
|
|
|
2009-09-16 19:12:15 -04: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 09:03:35 -04:00
|
|
|
|
|
|
|
(defgroup org-crypt nil
|
|
|
|
"Org Crypt"
|
2012-01-04 10:20:04 -05:00
|
|
|
:tag "Org Crypt"
|
2011-03-06 04:01:33 -05:00
|
|
|
:group 'org)
|
2009-09-16 09:03:35 -04:00
|
|
|
|
|
|
|
(defcustom org-crypt-tag-matcher "crypt"
|
2010-07-15 16:26:51 -04: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."
|
2012-01-04 10:20:04 -05:00
|
|
|
:type 'string
|
2011-03-06 04:01:33 -05:00
|
|
|
:group 'org-crypt)
|
2009-09-16 09:03:35 -04:00
|
|
|
|
2011-03-06 04:01:33 -05:00
|
|
|
(defcustom org-crypt-key ""
|
2010-07-15 16:26:51 -04:00
|
|
|
"The default key to use when encrypting the contents of a heading.
|
|
|
|
|
|
|
|
This setting can also be overridden in the CRYPTKEY property."
|
2012-01-04 10:20:04 -05:00
|
|
|
:type 'string
|
2011-03-06 04:01:33 -05:00
|
|
|
:group 'org-crypt)
|
2009-09-16 09:03:35 -04:00
|
|
|
|
2011-06-28 06:04:16 -04:00
|
|
|
(defcustom org-crypt-disable-auto-save 'ask
|
|
|
|
"What org-decrypt should do if `auto-save-mode' is enabled.
|
|
|
|
|
|
|
|
t : Disable auto-save-mode for the current buffer
|
|
|
|
prior to decrypting an entry.
|
|
|
|
|
|
|
|
nil : Leave auto-save-mode enabled.
|
|
|
|
This may cause data to be written to disk unencrypted!
|
|
|
|
|
|
|
|
'ask : Ask user whether or not to disable auto-save-mode
|
|
|
|
for the current buffer.
|
|
|
|
|
|
|
|
'encrypt : Leave auto-save-mode enabled for the current buffer,
|
|
|
|
but automatically re-encrypt all decrypted entries
|
|
|
|
*before* auto-saving.
|
|
|
|
NOTE: This only works for entries which have a tag
|
|
|
|
that matches `org-crypt-tag-matcher'."
|
|
|
|
:group 'org-crypt
|
Add version tag "24.1" for options introduced since Emacs 23.4 (and <= 24.1)
* org-exp.el (org-export-kill-product-buffer-when-displayed)
(org-export-initial-scope, org-export-date-timestamp-format)
(org-export-with-tasks, org-export-email-info)
(org-export-table-remove-empty-lines): Add version tag.
* org-mobile.el (org-mobile-files-exclude-regexp)
(org-mobile-use-encryption, org-mobile-encryption-tempfile)
(org-mobile-encryption-password, org-mobile-agendas): Add
version tag.
* ob-plantuml.el (org-plantuml-jar-path): Add version tag.
* org.el (org-babel-load-languages, org-clone-delete-id)
(org-log-buffer-setup-hook)
(org-loop-over-headlines-in-active-region)
(org-use-sub-superscripts, org-startup-with-beamer-mode)
(org-startup-with-inline-images, org-ctrl-k-protect-subtree)
(org-catch-invisible-edits)
(org-link-search-must-match-exact-headline)
(org-confirm-shell-link-not-regexp)
(org-confirm-elisp-link-not-regexp, org-log-refile)
(org-refile-use-cache)
(org-refile-active-region-within-subtree)
(org-todo-repeat-to-state, org-get-priority-function)
(org-agenda-jump-prefer-future)
(org-read-date-force-compatible-dates)
(org-use-effective-time)
(org-complete-tags-always-offer-all-agenda-tags)
(org-properties-postprocess-alist)
(org-format-latex-signal-error)
(org-latex-to-mathml-jar-file)
(org-latex-to-mathml-convert-command)
(org-export-latex-default-packages-alist)
(org-hidden-keywords, org-pretty-entities)
(org-pretty-entities-include-sub-superscripts)
(org-src-fontify-natively, org-effort-durations)
(org-speed-command-hook): Add version tag.
* org-html.el (org-export-html-footnote-separator)
(org-export-html-mathjax-options)
(org-export-html-mathjax-template)
(org-export-html-headline-anchor-format)
(org-export-html-preamble-format)
(org-export-html-postamble-format)
(org-export-html-table-align-individual-fields)
(org-export-html-protect-char-alist, org-export-html-divs):
Add version tag.
* org-ctags.el (org-ctags-path-to-ctags)
(org-ctags-open-link-functions)
(org-ctags-new-topic-template): Add version tag.
* ob-exp.el (org-export-babel-evaluate): Add version tag.
* org-beamer.el (org-beamer-use-parts)
(org-beamer-frame-level, org-beamer-frame-default-options)
(org-beamer-column-view-format, org-beamer-themes)
(org-beamer-environments-extra, org-beamer-fragile-re)
(org-beamer-outline-frame-title)
(org-beamer-outline-frame-options): Add version tag.
* org-wl.el (org-wl-link-remove-filter)
(org-wl-shimbun-prefer-web-links)
(org-wl-nntp-prefer-web-links, org-wl-disable-folder-check)
(org-wl-namazu-default-index): Add version tag.
* org-clock.el (org-task-overrun-text)
(org-clocktable-defaults, org-clock-clocktable-formatter)
(org-clock-clocktable-language-setup)
(org-clock-report-include-clocking-task)
(org-clock-resolve-expert): Add version tag.
* ob-lob.el (org-babel-lob-files): Add version tag.
* org-freemind.el (org-freemind-node-css-style): Add version
tag.
* org-archive.el (org-archive-reversed-order)
(org-archive-subtree-add-inherited-tags): Add version tag.
* org-bibtex.el (org-bibtex-autogen-keys, org-bibtex-prefix)
(org-bibtex-treat-headline-as-title)
(org-bibtex-export-arbitrary-fields)
(org-bibtex-key-property, org-bibtex-tags)
(org-bibtex-tags-are-keywords, org-bibtex-no-export-tags)
(org-bibtex-type-property-name): Add version tag.
* org-timer.el (org-timer-default-timer): Add version tag.
* org-taskjuggler.el (org-export-taskjuggler-extension)
(org-export-taskjuggler-project-tag)
(org-export-taskjuggler-resource-tag)
(org-export-taskjuggler-target-version)
(org-export-taskjuggler-default-project-version)
(org-export-taskjuggler-default-project-duration)
(org-export-taskjuggler-default-reports)
(org-export-taskjuggler-default-global-properties): Add
version tag.
* org-habit.el (org-habit-today-glyph)
(org-habit-completed-glyph): Add version tag.
* org-list.el (org-alphabetical-lists)
(org-list-ending-method, org-list-end-regexp)
(org-list-automatic-rules, org-list-use-circular-motion)
(org-list-indent-offset): Add version tag.
* ob-picolisp.el (org-babel-picolisp-cmd): Add version tag.
* org-icalendar.el (org-icalendar-alarm-time)
(org-icalendar-combined-description)
(org-icalendar-honor-noexport-tag)
(org-icalendar-date-time-format): Add version tag.
* org-src.el (org-src-tab-acts-natively): Add version tag.
* org-exp-blocks.el (org-export-blocks-postblock-hook): Add
version tag.
* org-table.el (org-table-exit-follow-field-mode-when-leaving-table)
(org-table-fix-formulas-confirm)
(org-table-duration-custom-format)
(org-table-formula-field-format): Add version tag.
* org-publish.el (org-publish-sitemap-sort-files)
(org-publish-sitemap-sort-folders)
(org-publish-sitemap-sort-ignore-case)
(org-publish-sitemap-date-format)
(org-publish-sitemap-file-entry-format): Add version tag.
* ob-js.el (org-babel-js-cmd): Add version tag.
* org-docbook.el (org-export-docbook-footnote-separator)
(org-export-docbook-xslt-stylesheet): Add version tag.
* org-entities.el (org-entities-ascii-explanatory)
(org-entities-user): Add version tag.
* ob.el (org-confirm-babel-evaluate)
(org-babel-no-eval-on-ctrl-c-ctrl-c): Add version tag.
* ob-tangle.el (org-babel-tangle-lang-exts)
(org-babel-post-tangle-hook, org-babel-pre-tangle-hook)
(org-babel-tangle-body-hook)
(org-babel-tangle-comment-format-beg)
(org-babel-tangle-comment-format-end)
(org-babel-process-comment-text): Add version tag.
* org-gnus.el (org-gnus-nnimap-query-article-no-from-file):
Add version tag.
* org-crypt.el (org-crypt-disable-auto-save): Add version tag.
* org-inlinetask.el (org-inlinetask-default-state): Add
version tag.
* ob-scheme.el (org-babel-scheme-cmd): Add version tag.
* ob-lisp.el (org-babel-lisp-dir-fmt): Add version tag.
* org-attach.el (org-attach-store-link-p): Add version tag.
* org-capture.el (org-capture-templates)
(org-capture-before-finalize-hook)
(org-capture-after-finalize-hook): Add version tag.
* org-agenda.el (org-agenda-skip-deadline-prewarning-if-scheduled)
(org-agenda-time-leading-zero, org-agenda-follow-indirect)
(org-agenda-menu-two-column, org-agenda-menu-show-matcher)
(org-agenda-timegrid-use-ampm)
(org-agenda-remove-timeranges-from-blocks)
(org-agenda-inactive-leader, org-agenda-current-time-string)
(org-agenda-show-current-time-in-grid)
(org-agenda-search-view-force-full-words)
(org-agenda-search-view-always-boolean)
(org-agenda-clock-consistency-checks)
(org-agenda-include-deadlines)
(org-agenda-move-date-from-past-immediately-to-today)
(org-agenda-day-face-function)
(org-agenda-category-icon-alist)
(org-agenda-bulk-custom-functions)
(org-agenda-insert-diary-extract-time): Add version tag.
* org-latex.el (org-export-latex-inputenc-alist)
(org-export-latex-tag-markup)
(org-export-latex-timestamp-inactive-markup)
(org-export-latex-href-format)
(org-export-latex-hyperref-format)
(org-export-latex-footnote-separator)
(org-export-latex-quotes)
(org-export-latex-table-caption-above)
(org-export-latex-listings-w-names)
(org-export-latex-minted-langs)
(org-export-latex-listings-options)
(org-export-latex-minted-options)
(org-latex-default-figure-position, org-export-pdf-logfiles):
Add version tag.
* org-faces.el (org-faces-easy-properties)
(org-fontify-quote-and-verse-blocks, org-cycle-level-faces):
Add version tag.
* ob-ditaa.el (org-ditaa-jar-option): Add version tag.
Thanks to Glenn Morris for reporting this.
2012-02-13 09:49:28 -05:00
|
|
|
:version "24.1"
|
2011-06-28 06:04:16 -04:00
|
|
|
:type '(choice (const :tag "Always" t)
|
|
|
|
(const :tag "Never" nil)
|
|
|
|
(const :tag "Ask" ask)
|
|
|
|
(const :tag "Encrypt" encrypt)))
|
|
|
|
|
2011-08-28 14:46:47 -04:00
|
|
|
(defun org-crypt-check-auto-save ()
|
|
|
|
"Check whether auto-save-mode is enabled for the current buffer.
|
|
|
|
|
|
|
|
`auto-save-mode' may cause leakage when decrypting entries, so
|
|
|
|
check whether it's enabled, and decide what to do about it.
|
|
|
|
|
|
|
|
See `org-crypt-disable-auto-save'."
|
|
|
|
(when buffer-auto-save-file-name
|
|
|
|
(cond
|
|
|
|
((or
|
|
|
|
(eq org-crypt-disable-auto-save t)
|
|
|
|
(and
|
|
|
|
(eq org-crypt-disable-auto-save 'ask)
|
|
|
|
(y-or-n-p "org-decrypt: auto-save-mode may cause leakage. Disable it for current buffer? ")))
|
|
|
|
(message (concat "org-decrypt: Disabling auto-save-mode for " (or (buffer-file-name) (current-buffer))))
|
|
|
|
; The argument to auto-save-mode has to be "-1", since
|
|
|
|
; giving a "nil" argument toggles instead of disabling.
|
|
|
|
(auto-save-mode -1))
|
|
|
|
((eq org-crypt-disable-auto-save nil)
|
|
|
|
(message "org-decrypt: Decrypting entry with auto-save-mode enabled. This may cause leakage."))
|
|
|
|
((eq org-crypt-disable-auto-save 'encrypt)
|
|
|
|
(message "org-decrypt: Enabling re-encryption on auto-save.")
|
|
|
|
(add-hook 'auto-save-hook
|
|
|
|
(lambda ()
|
|
|
|
(message "org-crypt: Re-encrypting all decrypted entries due to auto-save.")
|
|
|
|
(org-encrypt-entries))
|
|
|
|
nil t))
|
|
|
|
(t nil))))
|
|
|
|
|
2009-09-16 09:03:35 -04:00
|
|
|
(defun org-crypt-key-for-heading ()
|
2010-07-15 16:26:51 -04:00
|
|
|
"Return the encryption key for the current heading."
|
2009-09-16 09:03:35 -04:00
|
|
|
(save-excursion
|
|
|
|
(org-back-to-heading t)
|
2010-04-01 07:11:54 -04:00
|
|
|
(or (org-entry-get nil "CRYPTKEY" 'selective)
|
2009-09-16 09:03:35 -04:00
|
|
|
org-crypt-key
|
|
|
|
(and (boundp 'epa-file-encrypt-to) epa-file-encrypt-to)
|
2010-05-08 01:09:16 -04:00
|
|
|
(message "No crypt key set, using symmetric encryption."))))
|
2009-09-16 09:03:35 -04:00
|
|
|
|
2011-02-07 18:18:37 -05: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 09:03:35 -04:00
|
|
|
(defun org-encrypt-entry ()
|
|
|
|
"Encrypt the content of the current headline."
|
|
|
|
(interactive)
|
2009-09-16 19:12:15 -04:00
|
|
|
(require 'epg)
|
2009-09-16 09:03:35 -04:00
|
|
|
(save-excursion
|
|
|
|
(org-back-to-heading t)
|
2010-04-14 03:42:50 -04:00
|
|
|
(let ((start-heading (point)))
|
|
|
|
(forward-line)
|
|
|
|
(when (not (looking-at "-----BEGIN PGP MESSAGE-----"))
|
2011-01-26 10:21:25 -05:00
|
|
|
(let ((folded (outline-invisible-p))
|
2010-04-14 03:42:50 -04: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 18:18:37 -05:00
|
|
|
(org-encrypt-string (buffer-substring beg end) crypt-key))
|
2010-04-14 03:42:50 -04:00
|
|
|
(delete-region beg end)
|
|
|
|
(insert encrypted-text)
|
|
|
|
(when folded
|
|
|
|
(goto-char start-heading)
|
|
|
|
(hide-subtree))
|
|
|
|
nil)))))
|
2009-09-16 09:03:35 -04:00
|
|
|
|
|
|
|
(defun org-decrypt-entry ()
|
2010-03-21 03:16:08 -04:00
|
|
|
"Decrypt the content of the current headline."
|
2009-09-16 09:03:35 -04:00
|
|
|
(interactive)
|
2009-09-16 19:12:15 -04:00
|
|
|
(require 'epg)
|
2010-07-16 16:25:45 -04:00
|
|
|
(unless (org-before-first-heading-p)
|
|
|
|
(save-excursion
|
|
|
|
(org-back-to-heading t)
|
2011-01-26 12:46:29 -05: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-----")
|
2011-08-28 14:46:47 -04:00
|
|
|
(org-crypt-check-auto-save)
|
2011-01-26 12:46:29 -05:00
|
|
|
(let* ((end (save-excursion
|
|
|
|
(search-forward "-----END PGP MESSAGE-----")
|
|
|
|
(forward-line)
|
|
|
|
(point)))
|
|
|
|
(epg-context (epg-make-context nil t t))
|
2011-02-07 18:18:37 -05:00
|
|
|
(encrypted-text (buffer-substring-no-properties (point) end))
|
2011-01-26 12:46:29 -05:00
|
|
|
(decrypted-text
|
|
|
|
(decode-coding-string
|
|
|
|
(epg-decrypt-string
|
|
|
|
epg-context
|
2011-02-07 18:18:37 -05:00
|
|
|
encrypted-text)
|
2011-01-26 12:46:29 -05: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 18:18:37 -05: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 12:46:29 -05:00
|
|
|
(when heading-was-invisible-p
|
|
|
|
(goto-char heading-point)
|
|
|
|
(org-flag-subtree t))
|
|
|
|
nil))))))
|
2009-09-16 09:03:35 -04:00
|
|
|
|
|
|
|
(defun org-encrypt-entries ()
|
2010-03-21 03:16:08 -04:00
|
|
|
"Encrypt all top-level entries in the current buffer."
|
2009-09-16 09:03:35 -04:00
|
|
|
(interactive)
|
|
|
|
(org-scan-tags
|
|
|
|
'org-encrypt-entry
|
|
|
|
(cdr (org-make-tags-matcher org-crypt-tag-matcher))))
|
|
|
|
|
|
|
|
(defun org-decrypt-entries ()
|
2010-03-21 03:16:08 -04:00
|
|
|
"Decrypt all entries in the current buffer."
|
2009-09-16 09:03:35 -04:00
|
|
|
(interactive)
|
2010-04-01 07:11:54 -04:00
|
|
|
(org-scan-tags
|
2009-09-16 09:03:35 -04:00
|
|
|
'org-decrypt-entry
|
|
|
|
(cdr (org-make-tags-matcher org-crypt-tag-matcher))))
|
|
|
|
|
|
|
|
(defun org-crypt-use-before-save-magic ()
|
2010-07-15 16:26:51 -04:00
|
|
|
"Add a hook to automatically encrypt entries before a file is saved to disk."
|
2010-04-01 07:11:54 -04:00
|
|
|
(add-hook
|
|
|
|
'org-mode-hook
|
2009-09-16 09:03:35 -04:00
|
|
|
(lambda () (add-hook 'before-save-hook 'org-encrypt-entries nil t))))
|
2010-03-21 03:16:08 -04:00
|
|
|
|
|
|
|
(add-hook 'org-reveal-start-hook 'org-decrypt-entry)
|
2010-04-01 07:11:54 -04:00
|
|
|
|
2009-09-16 09:03:35 -04:00
|
|
|
(provide 'org-crypt)
|
|
|
|
|
|
|
|
;;; org-crypt.el ends here
|