hmac-md5.el (hmac-md5): Specify the 4th arg to `md5' as `binary'
authorokada <okada>
Fri, 19 Nov 1999 17:16:28 +0000 (17:16 +0000)
committerokada <okada>
Fri, 19 Nov 1999 17:16:28 +0000 (17:16 +0000)
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

ChangeLog
hmac-def.el
hmac-md5.el
hmac-sha1.el
hmac-util.el
md5-dl.el
md5.el
sha1-dl.el
sha1-el.el
sha1.el

index 43efe3c..02db5d4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,7 @@
-1999-10-19  Kenichi OKADA <okada@opaopa.org>
+1999-10-20  Kenichi OKADA <okada@opaopa.org>
 
-       * 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 <okada@opaopa.org>
 
index cc59fef..cdd955d 100644 (file)
@@ -5,6 +5,8 @@
 ;; Author: Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp>
 ;; 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
index 9469cef..0c86aa8 100644 (file)
@@ -5,6 +5,8 @@
 ;; Author: Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp>
 ;; 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.
   ;; 
index 58696a3..30bb061 100644 (file)
@@ -5,6 +5,8 @@
 ;; Author: Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp>
 ;; 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
index 61b36f3..7d1c056 100644 (file)
@@ -5,6 +5,8 @@
 ;; Author: Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp>
 ;; 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
index 659856c..4bc12bf 100644 (file)
--- a/md5-dl.el
+++ b/md5-dl.el
@@ -5,6 +5,8 @@
 ;; Author: Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp>
 ;; 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 (file)
--- a/md5.el
+++ b/md5.el
@@ -5,6 +5,8 @@
 ;; Author: Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp>
 ;; 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
index 8708c01..c103cd8 100644 (file)
@@ -5,6 +5,8 @@
 ;; Author: Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp>
 ;; 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
index f4706b8..c2f96a9 100644 (file)
@@ -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 (file)
--- a/sha1.el
+++ b/sha1.el
@@ -5,6 +5,8 @@
 ;; Author: Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp>
 ;; 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