What I want is to be able to make a 'heading' under which I can have encrypted data. I should be able to have multiple headings within the same file in emacs.
I had this working, but unfortunately I don't remember what I needed to do in order to encrypt the data. For reference, this is what I had to add to my .emacs to get it working:
(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 nil)
What I've tried so far: using :crypt:
before my heading, running M-x org-encrypt-entry
on the heading.