(delete-directory tempdir))))))
;;;###autoload
-(defun epg-decrypt-start (context input-file)
+(defun epg-start-decrypt (context input-file)
"Initiate a decrypt operation on INPUT-FILE.
If you use this function, you will need to wait for the completion of
"Decrypt INPUT-FILE and return the plain text."
(unwind-protect
(progn
- (epg-decrypt-start context input-file)
+ (epg-start-decrypt context input-file)
(epg-wait-for-completion context)
(if (epg-context-result-for context 'error)
(error "Decryption failed"))
(delete-file input-file)))))
;;;###autoload
-(defun epg-verify-start (context signature &optional string)
+(defun epg-start-verify (context signature &optional string)
"Initiate a verify operation on SIGNATURE.
For a detached signature, both SIGNATURE and STRING should be string.
(progn
(if string
(write-region signature nil input-file))
- (epg-verify-start context input-file string)
+ (epg-start-verify context input-file string)
(epg-wait-for-completion context)
(epg-context-result-for context 'verify))
(epg-reset context)
(delete-file input-file)))))
;;;###autoload
-(defun epg-sign-start (context string &optional mode)
+(defun epg-start-sign (context string &optional mode)
"Initiate a sign operation on STRING.
If optional 3rd argument MODE is 'clearsign, it makes a clear text signature.
Otherwise, it makes a normal signature."
(unwind-protect
(progn
- (epg-sign-start context string mode)
+ (epg-start-sign context string mode)
(epg-wait-for-completion context)
(if (epg-context-result-for context 'error)
(error "Sign failed"))
(epg-reset context)))
;;;###autoload
-(defun epg-encrypt-start (context string recipients
+(defun epg-start-encrypt (context string recipients
&optional sign always-trust)
"Initiate a encrypt operation on STRING.
If RECIPIENTS is nil, it performs symmetric encryption.
If RECIPIENTS is nil, it performs symmetric encryption."
(unwind-protect
(progn
- (epg-encrypt-start context string recipients sign always-trust)
+ (epg-start-encrypt context string recipients sign always-trust)
(epg-wait-for-completion context)
(if (epg-context-result-for context 'error)
(error "Encrypt failed"))