Mercurial > emacs
annotate lisp/net/sasl-ntlm.el @ 112442:76fa839f455e
* Makefile.in (MAKEINFO): Now controlled by `configure'.
(MAKEINFO_OPTS): New variable. Use it where appropriate.
(ENVADD): New variable to control texi2dvi and texi2pdf.
author | Werner Lemberg <wl@gnu.org> |
---|---|
date | Sun, 23 Jan 2011 11:22:21 +0100 |
parents | 417b1e4d63cd |
children |
rev | line source |
---|---|
86996 | 1 ;;; sasl-ntlm.el --- NTLM (NT Lan Manager) module for the SASL client framework |
2 | |
112218
376148b31b5e
Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
3 ;; Copyright (C) 2000, 2007, 2008, 2009, 2010, 2011 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 | |
110015
280c8ae2476d
Add "Package:" file headers to denote built-in packages.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
9 ;; Package: sasl |
86996 | 10 |
11 ;; This file is part of GNU Emacs. | |
12 | |
94677
91e5880a36c1
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
13 ;; GNU Emacs is free software: you can redistribute it and/or modify |
86996 | 14 ;; 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
|
15 ;; 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
|
16 ;; (at your option) any later version. |
86996 | 17 |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; 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
|
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
86996 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;; This is a SASL interface layer for NTLM authentication message | |
29 ;; generation by ntlm.el | |
30 | |
31 ;;; Code: | |
32 | |
33 (require 'sasl) | |
34 (require 'ntlm) | |
35 | |
36 (defconst sasl-ntlm-steps | |
37 '(ignore ;nothing to do before making | |
38 sasl-ntlm-request ;authentication request | |
39 sasl-ntlm-response) ;response to challenge | |
96406 | 40 "A list of functions to be called in sequence for the NTLM |
41 authentication steps. They are called by `sasl-next-step'.") | |
86996 | 42 |
43 (defun sasl-ntlm-request (client step) | |
44 "SASL step function to generate a NTLM authentication request to the server. | |
96406 | 45 Called from `sasl-next-step'. |
86996 | 46 CLIENT is a vector [mechanism user service server sasl-client-properties] |
47 STEP is a vector [<previous step function> <result of previous step function>]" | |
48 (let ((user (sasl-client-name client))) | |
49 (ntlm-build-auth-request user))) | |
50 | |
51 (defun sasl-ntlm-response (client step) | |
52 "SASL step function to generate a NTLM response against the server | |
96406 | 53 challenge stored in the 2nd element of STEP. Called from `sasl-next-step'." |
86996 | 54 (let* ((user (sasl-client-name client)) |
55 (passphrase | |
56 (sasl-read-passphrase (format "NTLM passphrase for %s: " user))) | |
57 (challenge (sasl-step-data step))) | |
58 (ntlm-build-auth-response challenge user | |
59 (ntlm-get-password-hashes passphrase)))) | |
60 | |
61 (put 'sasl-ntlm 'sasl-mechanism | |
62 (sasl-make-mechanism "NTLM" sasl-ntlm-steps)) | |
63 | |
64 (provide 'sasl-ntlm) | |
65 | |
66 ;;; sasl-ntlm.el ends here |