diff lisp/gnus/rfc2104.el @ 49598:0d8b17d428b5

Trailing whitepace deleted.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 04 Feb 2003 13:24:35 +0000
parents a26d9b55abb6
children 695cf19ef79e d7ddb3e565de
line wrap: on
line diff
--- a/lisp/gnus/rfc2104.el	Tue Feb 04 12:29:42 2003 +0000
+++ b/lisp/gnus/rfc2104.el	Tue Feb 04 13:24:35 2003 +0000
@@ -53,7 +53,7 @@
 ;;; 2000-05-12  added sha-1 example, added test case reference
 
 ;;; Code:
- 
+
 (eval-when-compile (require 'cl))
 
 ;; Magic character for inner HMAC round. 0x36 == 54 == '6'
@@ -66,7 +66,7 @@
 (defconst rfc2104-zero ?\x00)
 
 ;; Alist for converting hex to decimal.
-(defconst rfc2104-hex-alist 
+(defconst rfc2104-hex-alist
   '((?0 . 0)	      (?a . 10)	      (?A . 10)
     (?1 . 1)	      (?b . 11)	      (?B . 11)
     (?2 . 2)	      (?c . 12)	      (?C . 12)
@@ -95,7 +95,7 @@
 
 (defun rfc2104-hash (hash block-length hash-length key text)
   (let* (;; if key is longer than B, reset it to HASH(key)
-	 (key (if (> (length key) block-length) 
+	 (key (if (> (length key) block-length)
 		  (funcall hash key) key))
 	 (k_ipad (append key nil))
 	 (k_opad (append key nil)))