X-Git-Url: https://cgit.sxemacs.org/?a=blobdiff_plain;ds=inline;f=lisp%2Fsasl-ntlm.el;h=ace50528acbfdf7d204cc5a3f465f744c1cbaf0b;hb=c536c15a7209f1ae01c20beeacde17f7cb861c03;hp=41a1fdb186767a7b049229128146aa9c2e09f9af;hpb=8b5af94e55ef83ee46b42d32d92fa1ce95dcacf5;p=gnus diff --git a/lisp/sasl-ntlm.el b/lisp/sasl-ntlm.el index 41a1fdb18..ace50528a 100644 --- a/lisp/sasl-ntlm.el +++ b/lisp/sasl-ntlm.el @@ -1,11 +1,12 @@ ;;; sasl-ntlm.el --- NTLM (NT Lan Manager) module for the SASL client framework -;; Copyright (C) 2000, 2007, 2008 Free Software Foundation, Inc. +;; Copyright (C) 2000, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. ;; Author: Taro Kawagishi ;; Keywords: SASL, NTLM ;; Version: 1.00 ;; Created: February 2001 +;; Package: sasl ;; This file is part of GNU Emacs. @@ -36,12 +37,12 @@ '(ignore ;nothing to do before making sasl-ntlm-request ;authentication request sasl-ntlm-response) ;response to challenge - "A list of functions to be called in sequnece for the NTLM -authentication steps. Ther are called by 'sasl-next-step.") + "A list of functions to be called in sequence for the NTLM +authentication steps. They are called by `sasl-next-step'.") (defun sasl-ntlm-request (client step) "SASL step function to generate a NTLM authentication request to the server. -Called from 'sasl-next-step. +Called from `sasl-next-step'. CLIENT is a vector [mechanism user service server sasl-client-properties] STEP is a vector [ ]" (let ((user (sasl-client-name client))) @@ -49,7 +50,7 @@ STEP is a vector [ ]" (defun sasl-ntlm-response (client step) "SASL step function to generate a NTLM response against the server -challenge stored in the 2nd element of STEP. Called from 'sasl-next-step." +challenge stored in the 2nd element of STEP. Called from `sasl-next-step'." (let* ((user (sasl-client-name client)) (passphrase (sasl-read-passphrase (format "NTLM passphrase for %s: " user))) @@ -62,5 +63,4 @@ challenge stored in the 2nd element of STEP. Called from 'sasl-next-step." (provide 'sasl-ntlm) -;; arch-tag: 1d9164c1-1df0-418f-b7ab-360157fd05dc ;;; sasl-ntlm.el ends here