2000-11-11 Simon Josefsson <sj@extundo.com>
[gnus] / lisp / mml-smime.el
1 ;;; mml-smime.el --- S/MIME support for MML
2 ;; Copyright (c) 2000 Free Software Foundation, Inc.
3
4 ;; Author: Simon Josefsson <simon@josefsson.org>
5 ;; Keywords: Gnus, MIME, SMIME, MML
6
7 ;; This file is a 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 ;; todo: move s/mime code from mml-sec.el here.
27
28 ;;; Code:
29
30 (require 'smime)
31
32 (defun mml-smime-verify (handle ctl)
33   (with-current-buffer (mm-handle-multipart-original-buffer ctl)
34     ;; xxx modifies buffer -- noone else uses the buffer, so what the heck
35     (goto-char (point-min))
36     (insert (format "Content-Type: %s; " (mm-handle-media-type ctl)))
37     (insert (format "protocol=\"%s\"; " 
38                     (mm-handle-multipart-ctl-parameter ctl 'protocol)))
39     (insert (format "micalg=\"%s\"; " 
40                     (mm-handle-multipart-ctl-parameter ctl 'micalg)))
41     (insert (format "boundary=\"%s\"\n\n"
42                     (mm-handle-multipart-ctl-parameter ctl 'boundary)))
43     (when (get-buffer smime-details-buffer)
44       (kill-buffer smime-details-buffer))
45     (if (smime-verify-buffer)
46         (progn
47           (mm-set-handle-multipart-parameter 
48            mm-security-handle 'gnus-info "OK")
49           (kill-buffer smime-details-buffer))
50       (mm-set-handle-multipart-parameter 
51        mm-security-handle 'gnus-info "Failed")
52       (mm-set-handle-multipart-parameter
53        mm-security-handle 'gnus-details (with-current-buffer smime-details-buffer 
54                                           (buffer-string))))
55     handle))
56
57 (provide 'mml-smime)
58
59 ;;; mml-smime.el ends here