From: okada Date: Fri, 19 Nov 1999 17:16:28 +0000 (+0000) Subject: hmac-md5.el (hmac-md5): Specify the 4th arg to `md5' as `binary' X-Git-Tag: slim-1_13_0~1 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=d4bcc29e8c60f78d6f560762c9cc470e7fe6069e;p=elisp%2Fflim.git hmac-md5.el (hmac-md5): Specify the 4th arg to `md5' as `binary' if possible. hmac-def.el hmac-md5.el hmac-sha1.el hmac-util.el md5-dl.el md5-el.el md5.el sha1-dl.el sha1-el.el sha1.el comment update --- diff --git a/ChangeLog b/ChangeLog index 43efe3c..02db5d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,7 @@ -1999-10-19 Kenichi OKADA +1999-10-20 Kenichi OKADA - * sasl.el (sasl-plain): Renamed from plain-encode. - * sasl.el (sasl-cram-md5): Renamed from cram-md5-encode. + * hmac-md5.el (hmac-md5): Specify the 4th arg to `md5' + as `binary' if possible. 1999-10-19 Kenichi OKADA diff --git a/hmac-def.el b/hmac-def.el index cc59fef..cdd955d 100644 --- a/hmac-def.el +++ b/hmac-def.el @@ -5,6 +5,8 @@ ;; Author: Shuhei KOBAYASHI ;; Keywords: HMAC, RFC 2104 +;; This file is part of FLIM (Faithful Library about Internet Message). + ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation; either version 2, or diff --git a/hmac-md5.el b/hmac-md5.el index 9469cef..0c86aa8 100644 --- a/hmac-md5.el +++ b/hmac-md5.el @@ -5,6 +5,8 @@ ;; Author: Shuhei KOBAYASHI ;; Keywords: HMAC, RFC 2104, HMAC-MD5, MD5, KEYED-MD5, CRAM-MD5 +;; This file is part of FLIM (Faithful Library about Internet Message). + ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation; either version 2, or @@ -64,8 +66,8 @@ (require 'md5) ; expects (md5 STRING) (cond - ((and (fboundp 'md5) - (subrp (symbol-function 'md5))) + ((and (featurep 'xemacs) + (>= (function-max-args 'md5) 4)) ;; recent XEmacs has `md5' as a built-in function. ;; and default CODING is 'undecided. ;; diff --git a/hmac-sha1.el b/hmac-sha1.el index 58696a3..30bb061 100644 --- a/hmac-sha1.el +++ b/hmac-sha1.el @@ -5,6 +5,8 @@ ;; Author: Shuhei KOBAYASHI ;; Keywords: HMAC, RFC 2104, HMAC-SHA1, SHA1, Cancel-Lock +;; This file is part of FLIM (Faithful Library about Internet Message). + ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation; either version 2, or diff --git a/hmac-util.el b/hmac-util.el index 61b36f3..7d1c056 100644 --- a/hmac-util.el +++ b/hmac-util.el @@ -5,6 +5,8 @@ ;; Author: Shuhei KOBAYASHI ;; Keywords: HMAC, RFC 2104 +;; This file is part of FLIM (Faithful Library about Internet Message). + ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation; either version 2, or diff --git a/md5-dl.el b/md5-dl.el index 659856c..4bc12bf 100644 --- a/md5-dl.el +++ b/md5-dl.el @@ -5,6 +5,8 @@ ;; Author: Shuhei KOBAYASHI ;; Keywords: MD5, RFC 1321 +;; This file is part of FLIM (Faithful Library about Internet Message). + ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation; either version 2, or diff --git a/md5.el b/md5.el index 3548b99..634b2f0 100644 --- a/md5.el +++ b/md5.el @@ -5,6 +5,8 @@ ;; Author: Shuhei KOBAYASHI ;; Keywords: MD5, RFC 1321 +;; This file is part of FLIM (Faithful Library about Internet Message). + ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation; either version 2, or diff --git a/sha1-dl.el b/sha1-dl.el index 8708c01..c103cd8 100644 --- a/sha1-dl.el +++ b/sha1-dl.el @@ -5,6 +5,8 @@ ;; Author: Shuhei KOBAYASHI ;; Keywords: SHA1, FIPS 180-1 +;; This file is part of FLIM (Faithful Library about Internet Message). + ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation; either version 2, or diff --git a/sha1-el.el b/sha1-el.el index f4706b8..c2f96a9 100644 --- a/sha1-el.el +++ b/sha1-el.el @@ -7,6 +7,8 @@ ;; Revised: 1999-01-13 ;; Keywords: sha1, news, cancel-lock, hmac, rfc2104 +;; This file is part of FLIM (Faithful Library about Internet Message). + ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation; either version 2, or (at your option) diff --git a/sha1.el b/sha1.el index 55a8981..9818d02 100644 --- a/sha1.el +++ b/sha1.el @@ -5,6 +5,8 @@ ;; Author: Shuhei KOBAYASHI ;; Keywords: SHA1, FIPS 180-1 +;; This file is part of FLIM (Faithful Library about Internet Message). + ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation; either version 2, or