Mercurial > emacs
annotate lisp/net/sasl-ntlm.el @ 102086:c70627aa5a6b
(struct font_driver): Fix typo.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 18 Feb 2009 03:57:36 +0000 |
parents | a9dc0e7c3f2b |
children | 1d1d5d9bd884 |
rev | line source |
---|---|
86996 | 1 ;;; sasl-ntlm.el --- NTLM (NT Lan Manager) module for the SASL client framework |
2 | |
100908 | 3 ;; Copyright (C) 2000, 2007, 2008, 2009 Free Software Foundation, Inc. |
86996 | 4 |
5 ;; Author: Taro Kawagishi <tarok@transpulse.org> | |
6 ;; Keywords: SASL, NTLM | |
7 ;; Version: 1.00 | |
8 ;; Created: February 2001 | |
9 | |
10 ;; This file is part of GNU Emacs. | |
11 | |
94677
91e5880a36c1
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
12 ;; GNU Emacs is free software: you can redistribute it and/or modify |
86996 | 13 ;; it under the terms of the GNU General Public License as published by |
94677
91e5880a36c1
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; the Free Software Foundation, either version 3 of the License, or |
91e5880a36c1
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
15 ;; (at your option) any later version. |
86996 | 16 |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
94677
91e5880a36c1
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
86996 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;; This is a SASL interface layer for NTLM authentication message | |
28 ;; generation by ntlm.el | |
29 | |
30 ;;; Code: | |
31 | |
32 (require 'sasl) | |
33 (require 'ntlm) | |
34 | |
35 (defconst sasl-ntlm-steps | |
36 '(ignore ;nothing to do before making | |
37 sasl-ntlm-request ;authentication request | |
38 sasl-ntlm-response) ;response to challenge | |
96406 | 39 "A list of functions to be called in sequence for the NTLM |
40 authentication steps. They are called by `sasl-next-step'.") | |
86996 | 41 |
42 (defun sasl-ntlm-request (client step) | |
43 "SASL step function to generate a NTLM authentication request to the server. | |
96406 | 44 Called from `sasl-next-step'. |
86996 | 45 CLIENT is a vector [mechanism user service server sasl-client-properties] |
46 STEP is a vector [<previous step function> <result of previous step function>]" | |
47 (let ((user (sasl-client-name client))) | |
48 (ntlm-build-auth-request user))) | |
49 | |
50 (defun sasl-ntlm-response (client step) | |
51 "SASL step function to generate a NTLM response against the server | |
96406 | 52 challenge stored in the 2nd element of STEP. Called from `sasl-next-step'." |
86996 | 53 (let* ((user (sasl-client-name client)) |
54 (passphrase | |
55 (sasl-read-passphrase (format "NTLM passphrase for %s: " user))) | |
56 (challenge (sasl-step-data step))) | |
57 (ntlm-build-auth-response challenge user | |
58 (ntlm-get-password-hashes passphrase)))) | |
59 | |
60 (put 'sasl-ntlm 'sasl-mechanism | |
61 (sasl-make-mechanism "NTLM" sasl-ntlm-steps)) | |
62 | |
63 (provide 'sasl-ntlm) | |
64 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87665
diff
changeset
|
65 ;; arch-tag: 1d9164c1-1df0-418f-b7ab-360157fd05dc |
86996 | 66 ;;; sasl-ntlm.el ends here |