(smime-crl-check): New.
[gnus] / lisp / smime.el
1 ;;; smime.el --- S/MIME support library
2 ;; Copyright (c) 2000, 2001, 2003 Free Software Foundation, Inc.
3
4 ;; Author: Simon Josefsson <simon@josefsson.org>
5 ;; Keywords: SMIME X.509 PEM OpenSSL
6
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published
11 ;; by the Free Software Foundation; either version 2, or (at your
12 ;; option) any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful, but
15 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 ;; General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
23
24 ;;; Commentary:
25
26 ;; This library perform S/MIME operations from within Emacs.
27 ;;
28 ;; Functions for fetching certificates from public repositories are
29 ;; provided, currently only from DNS.  LDAP support (via EUDC) is planned.
30 ;;
31 ;; It uses OpenSSL (tested with version 0.9.5a and 0.9.6) for signing,
32 ;; encryption and decryption.
33 ;;
34 ;; Some general knowledge of S/MIME, X.509, PKCS#12, PEM etc is
35 ;; probably required to use this library in any useful way.
36 ;; Especially, don't expect this library to buy security for you.  If
37 ;; you don't understand what you are doing, you're as likely to lose
38 ;; security than gain any by using this library.
39 ;;
40 ;; This library is not intended to provide a "raw" API for S/MIME,
41 ;; PKCSx or similar, it's intended to perform common operations
42 ;; done on messages encoded in these formats.  The terminology chosen
43 ;; reflect this.
44 ;;
45 ;; The home of this file is in Gnus CVS, but also available from
46 ;; http://josefsson.org/smime.html.
47
48 ;;; Quick introduction:
49
50 ;; Get your S/MIME certificate from VeriSign or someplace.  I used
51 ;; Netscape to generate the key and certificate request and stuff, and
52 ;; Netscape can export the key into PKCS#12 format.
53 ;;
54 ;; Enter OpenSSL.  To be able to use this library, it need to have the
55 ;; SMIME key readable in PEM format.  OpenSSL is used to convert the
56 ;; key:
57 ;;
58 ;; $ openssl pkcs12 -in mykey.p12 -clcerts -nodes > mykey.pem
59 ;; ...
60 ;;
61 ;; Now, use M-x customize-variable smime-keys and add mykey.pem as
62 ;; a key.
63 ;;
64 ;; Now you should be able to sign messages!  Create a buffer and write
65 ;; something and run M-x smime-sign-buffer RET RET and you should see
66 ;; your message MIME armoured and a signature.  Encryption, M-x
67 ;; smime-encrypt-buffer, should also work.
68 ;;
69 ;; To be able to verify messages you need to build up trust with
70 ;; someone.  Perhaps you trust the CA that issued your certificate, at
71 ;; least I did, so I export it's certificates from my PKCS#12
72 ;; certificate with:
73 ;;
74 ;; $ openssl pkcs12 -in mykey.p12 -cacerts -nodes > cacert.pem
75 ;; ...
76 ;;
77 ;; Now, use M-x customize-variable smime-CAs and add cacert.pem as a
78 ;; CA certificate.
79 ;;
80 ;; You should now be able to sign messages, and even verify messages
81 ;; sent by others that use the same CA as you.
82
83 ;; Bugs:
84 ;;
85 ;; Don't complain that this package doesn't do encrypted PEM files,
86 ;; submit a patch instead.  I store my keys in a safe place, so I
87 ;; didn't need the encryption.  Also, programming was made easier by
88 ;; that decision.  One might think that this even influenced were I
89 ;; store my keys, and one would probably be right. :-)
90 ;;
91 ;; Update: Mathias Herberts sent the patch.  However, it uses
92 ;; environment variables to pass the password to OpenSSL, which is
93 ;; slightly insecure. Hence a new todo: use a better -passin method.
94 ;;
95 ;; Cache password for e.g. 1h
96 ;;
97 ;; Suggestions and comments are appreciated, mail me at simon@josefsson.org.
98
99 ;; begin rant
100 ;;
101 ;; I would include pointers to introductory text on concepts used in
102 ;; this library here, but the material I've read are so horrible I
103 ;; don't want to recomend them.
104 ;;
105 ;; Why can't someone write a simple introduction to all this stuff?
106 ;; Until then, much of this resemble security by obscurity.
107 ;;
108 ;; Also, I'm not going to mention anything about the wonders of
109 ;; cryptopolitics.  Oops, I just did.
110 ;;
111 ;; end rant
112
113 ;;; Revision history:
114
115 ;; 2000-06-05  initial version, committed to Gnus CVS contrib/
116 ;; 2000-10-28  retrieve certificates via DNS CERT RRs
117 ;; 2001-10-14  posted to gnu.emacs.sources
118
119 ;;; Code:
120
121 (require 'dig)
122 (eval-when-compile (require 'cl))
123
124 (defgroup smime nil
125   "S/MIME configuration.")
126
127 (defcustom smime-keys nil
128   "*Map mail addresses to a file containing Certificate (and private key).
129 The file is assumed to be in PEM format. You can also associate additional
130 certificates to be sent with every message to each address."
131   :type '(repeat (list (string :tag "Mail address")
132                        (file :tag "File name")
133                        (repeat :tag "Additional certificate files"
134                                (file :tag "File name"))))
135   :group 'smime)
136
137 (defcustom smime-CA-directory nil
138   "*Directory containing certificates for CAs you trust.
139 Directory should contain files (in PEM format) named to the X.509
140 hash of the certificate.  This can be done using OpenSSL such as:
141
142 $ ln -s ca.pem `openssl x509 -noout -hash -in ca.pem`.0
143
144 where `ca.pem' is the file containing a PEM encoded X.509 CA
145 certificate."
146   :type '(choice (const :tag "none" nil)
147                  directory)
148   :group 'smime)
149
150 (defcustom smime-CA-file nil
151   "*Files containing certificates for CAs you trust.
152 File should contain certificates in PEM format."
153   :type '(choice (const :tag "none" nil)
154                  file)
155   :group 'smime)
156
157 (defcustom smime-certificate-directory "~/Mail/certs/"
158   "*Directory containing other people's certificates.
159 It should contain files named to the X.509 hash of the certificate,
160 and the files themself should be in PEM format."
161 ;The S/MIME library provide simple functionality for fetching
162 ;certificates into this directory, so there is no need to populate it
163 ;manually.
164   :type 'directory
165   :group 'smime)
166
167 (defcustom smime-openssl-program
168   (and (condition-case ()
169            (eq 0 (call-process "openssl" nil nil nil "version"))
170          (error nil))
171        "openssl")
172   "*Name of OpenSSL binary."
173   :type 'string
174   :group 'smime)
175
176 ;; OpenSSL option to select the encryption cipher
177
178 (defcustom smime-encrypt-cipher "-des3"
179   "*Cipher algorithm used for encryption."
180   :type '(choice (const :tag "Triple DES" "-des3")
181                  (const :tag "DES"  "-des")
182                  (const :tag "RC2 40 bits" "-rc2-40")
183                  (const :tag "RC2 64 bits" "-rc2-64")
184                  (const :tag "RC2 128 bits" "-rc2-128"))
185   :group 'smime)
186
187 (defcustom smime-crl-check nil
188   "*Check revocation status of signers certificate using CRLs."
189   :type '(choice (const :tag "No check" nil)
190                  (const :tag "Check certificate" "-crl_check")
191                  (const :tag "Check certificate chain" "-crl_check_all"))
192   :group 'smime)
193
194 (defcustom smime-dns-server nil
195   "*DNS server to query certificates from.
196 If nil, use system defaults."
197   :type '(choice (const :tag "System defaults")
198                  string)
199   :group 'smime)
200
201 (defvar smime-details-buffer "*OpenSSL output*")
202
203 ;; Use mm-util?
204 (eval-and-compile
205   (defalias 'smime-make-temp-file
206     (if (fboundp 'make-temp-file)
207         'make-temp-file
208       (lambda (prefix &optional dir-flag) ;; Simple implementation
209         (expand-file-name
210          (make-temp-name prefix)
211          (if (fboundp 'temp-directory)
212              (temp-directory)
213            temporary-file-directory))))))
214
215 ;; Password dialog function
216
217 (defun smime-ask-passphrase ()
218   "Asks the passphrase to unlock the secret key."
219   (let ((passphrase
220          (read-passwd
221           "Passphrase for secret key (RET for no passphrase): ")))
222     (if (string= passphrase "")
223         nil
224       passphrase)))
225
226 ;; OpenSSL wrappers.
227
228 (defun smime-call-openssl-region (b e buf &rest args)
229   (case (apply 'call-process-region b e smime-openssl-program nil buf nil args)
230     (0 t)
231     (1 (message "OpenSSL: An error occurred parsing the command options.") nil)
232     (2 (message "OpenSSL: One of the input files could not be read.") nil)
233     (3 (message "OpenSSL: An error occurred creating the PKCS#7 file or when reading the MIME message.") nil)
234     (4 (message "OpenSSL: An error occurred decrypting or verifying the message.") nil)
235     (t (error "Unknown OpenSSL exitcode") nil)))
236
237 (defun smime-make-certfiles (certfiles)
238   (if certfiles
239       (append (list "-certfile" (expand-file-name (car certfiles)))
240               (smime-make-certfiles (cdr certfiles)))))
241
242 ;; Sign+encrypt region
243
244 (defun smime-sign-region (b e keyfile)
245   "Sign region with certified key in KEYFILE.
246 If signing fails, the buffer is not modified.  Region is assumed to
247 have proper MIME tags.  KEYFILE is expected to contain a PEM encoded
248 private key and certificate as its car, and a list of additional
249 certificates to include in its caar.  If no additional certificates is
250 included, KEYFILE may be the file containing the PEM encoded private
251 key and certificate itself."
252   (smime-new-details-buffer)
253   (let ((keyfile (or (car-safe keyfile) keyfile))
254         (certfiles (and (cdr-safe keyfile) (cadr keyfile)))
255         (buffer (generate-new-buffer (generate-new-buffer-name " *smime*")))
256         (passphrase (smime-ask-passphrase))
257         (tmpfile (smime-make-temp-file "smime")))
258     (if passphrase
259         (setenv "GNUS_SMIME_PASSPHRASE" passphrase))
260     (prog1
261         (when (prog1
262                   (apply 'smime-call-openssl-region b e (list buffer tmpfile)
263                          "smime" "-sign" "-signer" (expand-file-name keyfile)
264                          (append
265                           (smime-make-certfiles certfiles)
266                           (if passphrase
267                               (list "-passin" "env:GNUS_SMIME_PASSPHRASE"))))
268                 (if passphrase
269                     (setenv "GNUS_SMIME_PASSPHRASE" "" t))
270                 (with-current-buffer smime-details-buffer
271                   (insert-file-contents tmpfile)
272                   (delete-file tmpfile)))
273           (delete-region b e)
274           (insert-buffer-substring buffer)
275           (goto-char b)
276           (when (looking-at "^MIME-Version: 1.0$")
277             (delete-region (point) (progn (forward-line 1) (point))))
278           t)
279       (with-current-buffer smime-details-buffer
280         (goto-char (point-max))
281         (insert-buffer-substring buffer))
282       (kill-buffer buffer))))
283
284 (defun smime-encrypt-region (b e certfiles)
285   "Encrypt region for recipients specified in CERTFILES.
286 If encryption fails, the buffer is not modified.  Region is assumed to
287 have proper MIME tags.  CERTFILES is a list of filenames, each file
288 is expected to contain of a PEM encoded certificate."
289   (smime-new-details-buffer)
290   (let ((buffer (generate-new-buffer (generate-new-buffer-name " *smime*")))
291         (tmpfile (smime-make-temp-file "smime")))
292     (prog1
293         (when (prog1
294                   (apply 'smime-call-openssl-region b e (list buffer tmpfile)
295                          "smime" "-encrypt" smime-encrypt-cipher
296                          (mapcar 'expand-file-name certfiles))
297                 (with-current-buffer smime-details-buffer
298                   (insert-file-contents tmpfile)
299                   (delete-file tmpfile)))
300           (delete-region b e)
301           (insert-buffer-substring buffer)
302           (goto-char b)
303           (when (looking-at "^MIME-Version: 1.0$")
304             (delete-region (point) (progn (forward-line 1) (point))))
305           t)
306       (with-current-buffer smime-details-buffer
307         (goto-char (point-max))
308         (insert-buffer-substring buffer))
309       (kill-buffer buffer))))
310
311 ;; Sign+encrypt buffer
312
313 (defun smime-sign-buffer (&optional keyfile buffer)
314   "S/MIME sign BUFFER with key in KEYFILE.
315 KEYFILE should contain a PEM encoded key and certificate."
316   (interactive)
317   (with-current-buffer (or buffer (current-buffer))
318     (smime-sign-region
319      (point-min) (point-max)
320      (if keyfile
321          keyfile
322        (smime-get-key-with-certs-by-email
323         (completing-read
324          (concat "Sign using which key? "
325                  (if smime-keys (concat "(default " (caar smime-keys) ") ")
326                    ""))
327          smime-keys nil nil (car-safe (car-safe smime-keys))))))))
328
329 (defun smime-encrypt-buffer (&optional certfiles buffer)
330   "S/MIME encrypt BUFFER for recipients specified in CERTFILES.
331 CERTFILES is a list of filenames, each file is expected to consist of
332 a PEM encoded key and certificate.  Uses current buffer if BUFFER is
333 nil."
334   (interactive)
335   (with-current-buffer (or buffer (current-buffer))
336     (smime-encrypt-region
337      (point-min) (point-max)
338      (or certfiles
339          (list (read-file-name "Recipient's S/MIME certificate: "
340                                smime-certificate-directory nil))))))
341
342 ;; Verify+decrypt region
343
344 (defun smime-verify-region (b e)
345   "Verify S/MIME message in region between B and E.
346 Returns non-nil on success.
347 Any details (stdout and stderr) are left in the buffer specified by
348 `smime-details-buffer'."
349   (smime-new-details-buffer)
350   (let ((CAs (append (if smime-CA-file
351                          (list "-CAfile"
352                                (expand-file-name smime-CA-file)))
353                      (if smime-CA-directory
354                          (list "-CApath"
355                                (expand-file-name smime-CA-directory))))))
356     (unless CAs
357       (error "No CA configured"))
358     (if smime-crl-check
359         (add-to-list 'CAs smime-crl-check))
360     (if (apply 'smime-call-openssl-region b e (list smime-details-buffer t)
361                "smime" "-verify" "-out" "/dev/null" CAs)
362         t
363       (insert-buffer-substring smime-details-buffer)
364       nil)))
365
366 (defun smime-noverify-region (b e)
367   "Verify integrity of S/MIME message in region between B and E.
368 Returns non-nil on success.
369 Any details (stdout and stderr) are left in the buffer specified by
370 `smime-details-buffer'."
371   (smime-new-details-buffer)
372   (if (apply 'smime-call-openssl-region b e (list smime-details-buffer t)
373              "smime" "-verify" "-noverify" "-out" '("/dev/null"))
374       t
375     (insert-buffer-substring smime-details-buffer)
376     nil))
377
378 (eval-when-compile
379   (defvar from))
380
381 (defun smime-decrypt-region (b e keyfile)
382   "Decrypt S/MIME message in region between B and E with key in KEYFILE.
383 On success, replaces region with decrypted data and return non-nil.
384 Any details (stderr on success, stdout and stderr on error) are left
385 in the buffer specified by `smime-details-buffer'."
386   (smime-new-details-buffer)
387   (let ((buffer (generate-new-buffer (generate-new-buffer-name " *smime*")))
388         CAs (passphrase (smime-ask-passphrase))
389         (tmpfile (smime-make-temp-file "smime")))
390     (if passphrase
391         (setenv "GNUS_SMIME_PASSPHRASE" passphrase))
392     (if (prog1
393             (apply 'smime-call-openssl-region b e
394                    (list buffer tmpfile)
395                    "smime" "-decrypt" "-recip" (expand-file-name keyfile)
396                    (if passphrase
397                        (list "-passin" "env:GNUS_SMIME_PASSPHRASE")))
398           (if passphrase
399               (setenv "GNUS_SMIME_PASSPHRASE" "" t))
400           (with-current-buffer smime-details-buffer
401             (insert-file-contents tmpfile)
402             (delete-file tmpfile)))
403         (progn
404           (delete-region b e)
405           (when (boundp 'from)
406             ;; `from' is dynamically bound in mm-dissect.
407             (insert "From: " from "\n"))
408           (insert-buffer-substring buffer)
409           (kill-buffer buffer)
410           t)
411       (with-current-buffer smime-details-buffer
412         (insert-buffer-substring buffer))
413       (kill-buffer buffer)
414       (delete-region b e)
415       (insert-buffer-substring smime-details-buffer)
416       nil)))
417
418 ;; Verify+Decrypt buffer
419
420 (defun smime-verify-buffer (&optional buffer)
421   "Verify integrity of S/MIME message in BUFFER.
422 Uses current buffer if BUFFER is nil. Returns non-nil on success.
423 Any details (stdout and stderr) are left in the buffer specified by
424 `smime-details-buffer'."
425   (interactive)
426   (with-current-buffer (or buffer (current-buffer))
427     (smime-verify-region (point-min) (point-max))))
428
429 (defun smime-noverify-buffer (&optional buffer)
430   "Verify integrity of S/MIME message in BUFFER.
431 Does NOT verify validity of certificate (only message integrity).
432 Uses current buffer if BUFFER is nil. Returns non-nil on success.
433 Any details (stdout and stderr) are left in the buffer specified by
434 `smime-details-buffer'."
435   (interactive)
436   (with-current-buffer (or buffer (current-buffer))
437     (smime-noverify-region (point-min) (point-max))))
438
439 (defun smime-decrypt-buffer (&optional buffer keyfile)
440   "Decrypt S/MIME message in BUFFER using KEYFILE.
441 Uses current buffer if BUFFER is nil, and query user of KEYFILE if it's nil.
442 On success, replaces data in buffer and return non-nil.
443 Any details (stderr on success, stdout and stderr on error) are left
444 in the buffer specified by `smime-details-buffer'."
445   (interactive)
446   (with-current-buffer (or buffer (current-buffer))
447     (smime-decrypt-region
448      (point-min) (point-max)
449      (expand-file-name
450       (or keyfile
451           (smime-get-key-by-email
452            (completing-read
453             (concat "Decipher using which key? "
454                     (if smime-keys (concat "(default " (caar smime-keys) ") ")
455                       ""))
456             smime-keys nil nil (car-safe (car-safe smime-keys)))))))))
457
458 ;; Various operations
459
460 (defun smime-new-details-buffer ()
461   (with-current-buffer (get-buffer-create smime-details-buffer)
462     (erase-buffer)))
463
464 (defun smime-pkcs7-region (b e)
465   "Convert S/MIME message between points B and E into a PKCS7 message."
466   (smime-new-details-buffer)
467   (when (smime-call-openssl-region b e smime-details-buffer "smime" "-pk7out")
468     (delete-region b e)
469     (insert-buffer-substring smime-details-buffer)
470     t))
471
472 (defun smime-pkcs7-certificates-region (b e)
473   "Extract any certificates enclosed in PKCS7 message between points B and E."
474   (smime-new-details-buffer)
475   (when (smime-call-openssl-region
476          b e smime-details-buffer "pkcs7" "-print_certs" "-text")
477     (delete-region b e)
478     (insert-buffer-substring smime-details-buffer)
479     t))
480
481 (defun smime-pkcs7-email-region (b e)
482   "Get email addresses contained in certificate between points B and E.
483 A string or a list of strings is returned."
484   (smime-new-details-buffer)
485   (when (smime-call-openssl-region
486          b e smime-details-buffer "x509" "-email" "-noout")
487     (delete-region b e)
488     (insert-buffer-substring smime-details-buffer)
489     t))
490
491 ;; Utility functions
492
493 (defun smime-get-certfiles (keyfile keys)
494   (if keys
495       (let ((curkey (car keys))
496             (otherkeys (cdr keys)))
497         (if (string= keyfile (cadr curkey))
498             (caddr curkey)
499           (smime-get-certfiles keyfile otherkeys)))))
500
501 ;; Use mm-util?
502 (eval-and-compile
503   (defalias 'smime-point-at-eol
504     (if (fboundp 'point-at-eol)
505         'point-at-eol
506       'line-end-position)))
507
508 (defun smime-buffer-as-string-region (b e)
509   "Return each line in region between B and E as a list of strings."
510   (save-excursion
511     (goto-char b)
512     (let (res)
513       (while (< (point) e)
514         (let ((str (buffer-substring (point) (smime-point-at-eol))))
515           (unless (string= "" str)
516             (push str res)))
517         (forward-line))
518       res)))
519
520 ;; Find certificates
521
522 (defun smime-mail-to-domain (mailaddr)
523   (if (string-match "@" mailaddr)
524       (replace-match "." 'fixedcase 'literal mailaddr)
525     mailaddr))
526
527 (defun smime-cert-by-dns (mail)
528   (let* ((dig-dns-server smime-dns-server)
529          (digbuf (dig-invoke (smime-mail-to-domain mail) "cert" nil nil "+vc"))
530          (retbuf (generate-new-buffer (format "*certificate for %s*" mail)))
531          (certrr (with-current-buffer digbuf
532                    (dig-extract-rr (smime-mail-to-domain mail) "cert")))
533          (cert (and certrr (dig-rr-get-pkix-cert certrr))))
534       (if cert
535           (with-current-buffer retbuf
536             (insert "-----BEGIN CERTIFICATE-----\n")
537             (let ((i 0) (len (length cert)))
538               (while (> (- len 64) i)
539                 (insert (substring cert i (+ i 64)) "\n")
540                 (setq i (+ i 64)))
541               (insert (substring cert i len) "\n"))
542             (insert "-----END CERTIFICATE-----\n"))
543         (kill-buffer retbuf)
544         (setq retbuf nil))
545       (kill-buffer digbuf)
546       retbuf))
547
548 ;; User interface.
549
550 (defvar smime-buffer "*SMIME*")
551
552 (defvar smime-mode-map nil)
553 (put 'smime-mode 'mode-class 'special)
554
555 (unless smime-mode-map
556   (setq smime-mode-map (make-sparse-keymap))
557   (suppress-keymap smime-mode-map)
558
559   (define-key smime-mode-map "q" 'smime-exit)
560   (define-key smime-mode-map "f" 'smime-certificate-info))
561
562 (defun smime-mode ()
563   "Major mode for browsing, viewing and fetching certificates.
564
565 All normal editing commands are switched off.
566 \\<smime-mode-map>
567
568 The following commands are available:
569
570 \\{smime-mode-map}"
571   (interactive)
572   (kill-all-local-variables)
573   (setq major-mode 'smime-mode)
574   (setq mode-name "SMIME")
575   (setq mode-line-process nil)
576   (use-local-map smime-mode-map)
577   (buffer-disable-undo)
578   (setq truncate-lines t)
579   (setq buffer-read-only t))
580
581 (defun smime-certificate-info (certfile)
582   (interactive "fCertificate file: ")
583   (let ((buffer (get-buffer-create (format "*certificate %s*" certfile))))
584     (switch-to-buffer buffer)
585     (erase-buffer)
586     (call-process smime-openssl-program nil buffer 'display
587                   "x509" "-in" (expand-file-name certfile) "-text")
588     (fundamental-mode)
589     (set-buffer-modified-p nil)
590     (toggle-read-only t)
591     (goto-char (point-min))))
592
593 (defun smime-draw-buffer ()
594   (with-current-buffer smime-buffer
595     (let (buffer-read-only)
596       (erase-buffer)
597       (insert "\nYour keys:\n")
598       (dolist (key smime-keys)
599         (insert
600          (format "\t\t%s: %s\n" (car key) (cadr key))))
601       (insert "\nTrusted Certificate Authoritys:\n")
602       (insert "\nKnown Certificates:\n"))))
603
604 (defun smime ()
605   "Go to the SMIME buffer."
606   (interactive)
607   (unless (get-buffer smime-buffer)
608     (save-excursion
609       (set-buffer (get-buffer-create smime-buffer))
610       (smime-mode)))
611   (smime-draw-buffer)
612   (switch-to-buffer smime-buffer))
613
614 (defun smime-exit ()
615   "Quit the S/MIME buffer."
616   (interactive)
617   (kill-buffer (current-buffer)))
618
619 ;; Other functions
620
621 (defun smime-get-key-by-email (email)
622   (cadr (assoc email smime-keys)))
623
624 (defun smime-get-key-with-certs-by-email (email)
625   (cdr (assoc email smime-keys)))
626
627 (provide 'smime)
628
629 ;;; smime.el ends here