2001-11-26 Katsumi Yamaoka <yamaoka@jpl.org>
authorSimon Josefsson <jas@extundo.com>
Mon, 26 Nov 2001 14:27:35 +0000 (14:27 +0000)
committerSimon Josefsson <jas@extundo.com>
Mon, 26 Nov 2001 14:27:35 +0000 (14:27 +0000)
* canlock.el: Remove sha1.el and base64.el stuff.

lisp/ChangeLog
lisp/canlock.el

index f9fe77a..349e665 100644 (file)
@@ -1,3 +1,7 @@
+2001-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * canlock.el: Remove sha1.el and base64.el stuff.
+
 2001-11-26  Didier Verna  <didier@xemacs.org>
 
        * nnmbox.el (nnmbox-create-mbox): create the mbox file directory
index f1d5b6a..f24a88e 100644 (file)
@@ -45,8 +45,6 @@
   (require 'cl))
 
 (autoload 'sha1-binary "sha1-el")
-(autoload 'sha1-encode-binary "sha1")
-(autoload 'base64-encode "base64")
 
 (defgroup canlock nil
   "The Cancel-Lock feature."
 
 (defcustom canlock-sha1-function 'sha1-binary
   "Function to call to make a SHA-1 message digest."
-  :type '(radio (function-item sha1-encode-binary)
-               (function-item sha1-binary)
+  :type '(radio (function-item sha1-binary)
                (function-item canlock-sha1-with-openssl)
                (function :tag "Other"))
   :group 'canlock)
 
 (defcustom canlock-sha1-function-for-verify canlock-sha1-function
   "Function to call to make a SHA-1 message digest for verifying."
-  :type '(radio (function-item sha1-encode-binary)
-               (function-item sha1-binary)
+  :type '(radio (function-item sha1-binary)
                (function-item canlock-sha1-with-openssl)
                (function :tag "Other"))
   :group 'canlock)