* unique-id.el: New file.
[elisp/flim.git] / sasl.el
1 ;;; sasl.el --- basic functions for SASL
2
3 ;; Copyright (C) 1995, 1996, 1998, 1999 Free Software Foundation, Inc.
4
5 ;; Author: Kenichi OKADA <okada@opaopa.org>
6 ;; Keywords: SMTP, SASL, RFC2222
7
8 ;; This file is part of FLIM (Faithful Library about Internet Message).
9
10 ;; This program is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or (at
13 ;; your option) any later version.
14
15 ;; This program is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with this program; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;; Example.
28 ;;
29 ;; (base64-encode-string
30 ;;  (sasl-scram-md5-client-msg-2
31 ;;   (base64-decode-string "dGVzdHNhbHQBAAAAaW1hcEBlbGVhbm9yLmlubm9zb2Z0LmNvbQBqaGNOWmxSdVBiemlGcCt2TFYrTkN3")
32 ;;   (base64-decode-string "AGNocmlzADx0NG40UGFiOUhCMEFtL1FMWEI3MmVnQGVsZWFub3IuaW5ub3NvZnQuY29tPg==")
33 ;;   (scram-md5-make-salted-pass
34 ;;    "secret stuff" "testsalt")))
35 ;; => "AQAAAMg9jU8CeB4KOfk7sUhSQPs="
36 ;;
37 ;; (base64-encode-string
38 ;;  (scram-md5-make-server-msg-2
39 ;;   (base64-decode-string "dGVzdHNhbHQBAAAAaW1hcEBlbGVhbm9yLmlubm9zb2Z0LmNvbQBqaGNOWmxSdVBiemlGcCt2TFYrTkN3")
40 ;;   (base64-decode-string "AGNocmlzADx0NG40UGFiOUhCMEFtL1FMWEI3MmVnQGVsZWFub3IuaW5ub3NvZnQuY29tPg==")
41 ;;   (scram-make-security-info nil t 0)
42 ;;   "testsalt"
43 ;;   (scram-md5-make-salted-pass
44 ;;    "secret stuff" "testsalt")))
45 ;; => "U0odqYw3B7XIIW0oSz65OQ=="
46
47 ;;; Code:
48
49 (require 'hmac-md5)
50 (require 'scram-md5)
51
52 ;;; CRAM-MD5
53 (defun sasl-cram-md5 (username passphrase challenge)
54   (let ((secure-word (copy-sequence passphrase)))
55     (setq secure-word (unwind-protect
56                           (hmac-md5 challenge secure-word)
57                         (fillarray secure-word 0))
58           secure-word (unwind-protect
59                           (encode-hex-string secure-word)
60                         (fillarray secure-word 0))
61           secure-word (unwind-protect
62                           (concat username " " secure-word)
63                         (fillarray secure-word 0)))))
64
65 ;;; PLAIN
66 (defun sasl-plain (authorid authenid passphrase)
67   (concat authorid "\0" authenid "\0" passphrase))
68
69 ;;; SCRAM-MD5
70 (defvar sasl-scram-md5-client-security-info
71   (scram-make-security-info nil t 0))
72
73 (defun sasl-scram-md5-client-msg-1 (authenticate-id &optional authorize-id)
74   (scram-md5-make-client-msg-1 authenticate-id authorize-id))
75
76 (defun sasl-scram-md5-client-msg-2 (server-msg-1 client-msg-1 salted-pass)
77   (let (client-proof client-key shared-key client-verifier)
78     (setq client-key
79           (scram-md5-make-client-key salted-pass))
80     (setq client-verifier
81           (scram-md5-make-client-verifier client-key))
82     (setq shared-key
83           (unwind-protect
84               (scram-md5-make-shared-key
85                server-msg-1
86                client-msg-1
87                sasl-scram-md5-client-security-info
88                client-verifier)
89             (fillarray client-verifier 0)))
90     (setq client-proof
91           (unwind-protect
92               (scram-md5-make-client-proof
93                client-key shared-key)
94             (fillarray client-key 0)
95             (fillarray shared-key 0)))
96     (unwind-protect
97         (scram-md5-make-client-msg-2
98          sasl-scram-md5-client-security-info
99          client-proof)
100       (fillarray client-proof 0))))
101              
102 (defun sasl-scram-md5-authenticate-server (server-msg-1 
103                                            server-msg-2
104                                            client-msg-1
105                                            salted-pass)
106   (string= server-msg-2
107            (scram-md5-make-server-msg-2
108             server-msg-1
109             client-msg-1
110             sasl-scram-md5-client-security-info
111             (car
112              (scram-md5-parse-server-msg-1 server-msg-1))
113             salted-pass)))
114
115 (provide 'sasl)
116
117 ;;; sasl.el ends here