(epa-display-verify-result (epg-context-result-for context 'verify)))))
;;;###autoload
-(defun epa-verify-armor-in-region (start end)
- "Verify OpenPGP armors in the current region between START and END.
+(defun epa-verify-cleartext-in-region (start end)
+ "Verify OpenPGP cleartext signed messages in the current region
+between START and END.
Don't use this command in Lisp programs!"
(interactive "r")
(narrow-to-region start end)
(goto-char start)
(let (armor-start armor-end)
- (while (re-search-forward "-----BEGIN PGP\\( SIGNED\\)? MESSAGE-----$"
+ (while (re-search-forward "-----BEGIN PGP SIGNED MESSAGE-----$"
nil t)
(setq armor-start (match-beginning 0))
- (if (match-beginning 1) ;cleartext signed message
- (progn
- (unless (re-search-forward "^-----BEGIN PGP SIGNATURE-----$"
+ (unless (re-search-forward "^-----BEGIN PGP SIGNATURE-----$"
nil t)
- (error "Invalid cleartext signed message"))
- (setq armor-end (re-search-forward
- "^-----END PGP SIGNATURE-----$"
- nil t)))
- (setq armor-end (re-search-forward
- "^-----END PGP MESSAGE-----$"
- nil t)))
+ (error "Invalid cleartext signed message"))
+ (setq armor-end (re-search-forward
+ "^-----END PGP SIGNATURE-----$"
+ nil t))
(unless armor-end
(error "No armor tail"))
(epa-verify-region armor-start armor-end))))))
;;;###autoload
(defun epa-delete-keys (keys &optional allow-secret)
- "Delete selected KEYS."
+ "Delete selected KEYS.
+
+Don't use this command in Lisp programs!"
(interactive
(let ((keys (epa--marked-keys)))
(unless keys
;;;###autoload
(defun epa-import-keys (file)
- "Import keys from FILE."
+ "Import keys from FILE.
+
+Don't use this command in Lisp programs!"
(interactive "fFile: ")
(let ((context (epg-make-context)))
(message "Importing %s..." (file-name-nondirectory file))
;;;###autoload
(defun epa-export-keys (keys file)
- "Export selected KEYS to FILE."
+ "Export selected KEYS to FILE.
+
+Don't use this command in Lisp programs!"
(interactive
(let ((keys (epa--marked-keys))
default-name)
;;;###autoload
(defun epa-sign-keys (keys &optional local)
"Sign selected KEYS.
-If LOCAL is non-nil, the signature is marked as non exportable."
+If a prefix-arg is specified, the signature is marked as non exportable.
+
+Don't use this command in Lisp programs!"
(interactive
(let ((keys (epa--marked-keys)))
(unless keys