;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;; Created: 1995/12/7
;; Renamed: 1997/2/27 from tm-pgp.el
-;; Version: $Id: mime-pgp.el,v 0.24 1997-11-20 12:52:34 morioka Exp $
+;; Version: $Id: mime-pgp.el,v 0.25 1997-11-20 13:10:30 morioka Exp $
;; Keywords: PGP, security, MIME, multimedia, mail, news
;; This file is part of SEMI (Secure Emacs MIME Interface).
'((en . "Key matching expected Key ID \\(\\S +\\) not found"))
"Alist of language vs regexp to detect ``Key expected''.")
-(defun mime::article/call-pgp-to-check-signature (output-buffer orig-file)
+(defun mime-pgp-check-signature (output-buffer orig-file)
(save-excursion
(set-buffer output-buffer)
(erase-buffer)
)
(mime-decode-region (point-min)(point-max) encoding)
(as-binary-output-file (write-region (point-min)(point-max) sig-file))
- (or (mime::article/call-pgp-to-check-signature
+ (or (mime-pgp-check-signature
mime-echo-buffer-name orig-file)
(let (pgp-id)
(save-excursion
)
(progn
(funcall (pgp-function 'fetch-key) (cons nil pgp-id))
- (mime::article/call-pgp-to-check-signature
+ (mime-pgp-check-signature
mime-echo-buffer-name orig-file)
))
))