Update Copyright header.
[elisp/flim.git] / md5-dl.el
1 ;;; md5-dl.el --- MD5 Message Digest Algorithm using DL module.
2
3 ;; Copyright (C) 1999, 2001  Free Software Foundation, Inc.
4
5 ;; Author: Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp>
6 ;; Keywords: MD5, RFC 1321
7
8 ;; This file is part of FLIM (Faithful Library about Internet Message).
9
10 ;; This program is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or
13 ;; (at your option) any later version.
14
15 ;; This program is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with this program; see the file COPYING.  If not, write to
22 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (eval-when-compile
30   (defun-maybe md5-string (a))
31   (defun-maybe dynamic-link (a))
32   (defun-maybe dynamic-call (a b)))
33
34 (defvar md5-dl-module
35   (if (and (fboundp 'md5-string)
36            (subrp (symbol-function 'md5-string)))
37       nil
38     (if (fboundp 'dynamic-link)
39         (let ((path (expand-file-name "md5.so" exec-directory)))
40           (and (file-exists-p path)
41                path)))))
42
43 (defvar md5-dl-handle
44   (and (stringp md5-dl-module)
45        (file-exists-p md5-dl-module)
46        (dynamic-link md5-dl-module)))
47
48 ;;; md5-dl-module provides `md5-string'.
49 (dynamic-call "emacs_md5_init" md5-dl-handle)
50
51 (defun md5-region (beg end)
52   (interactive "r")
53   (md5-string (buffer-substring-no-properties beg end)))
54
55 ;;; Note that XEmacs built-in version takes two more args: CODING and NOERROR.
56 ;;;###autoload
57 (defun md5 (object &optional beg end)
58   "Return the MD5 (a secure message digest algorithm) of an object.
59 OBJECT is either a string or a buffer.
60 Optional arguments BEG and END denote buffer positions for computing the
61 hash of a portion of OBJECT."
62   (if (stringp object)
63       (md5-string object)
64     (save-excursion
65       (set-buffer object)
66       (md5-region (or beg (point-min)) (or end (point-max))))))
67
68 (provide 'md5-dl)
69
70 ;;; md5-dl.el ends here