comparison lisp/gnus/hmac-md5.el @ 86783:9fd995c6e740

Standardize license text. Add 2007 to copyright years.
author Glenn Morris <rgm@gnu.org>
date Wed, 28 Nov 2007 07:54:33 +0000
parents a3c27999decb
children
comparison
equal deleted inserted replaced
86782:d6a3d0cf4b80 86783:9fd995c6e740
1 ;;; hmac-md5.el --- Compute HMAC-MD5. 1 ;;; hmac-md5.el --- Compute HMAC-MD5.
2 2
3 ;; Copyright (C) 1999, 2001 Free Software Foundation, Inc. 3 ;; Copyright (C) 1999, 2001, 2007 Free Software Foundation, Inc.
4 4
5 ;; Author: Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp> 5 ;; Author: Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp>
6 ;; Keywords: HMAC, RFC 2104, HMAC-MD5, MD5, KEYED-MD5, CRAM-MD5 6 ;; Keywords: HMAC, RFC 2104, HMAC-MD5, MD5, KEYED-MD5, CRAM-MD5
7 7
8 ;; This file is part of FLIM (Faithful Library about Internet Message). 8 ;; This file is part of GNU Emacs.
9 9
10 ;; This program is free software; you can redistribute it and/or 10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; modify it under the terms of the GNU General Public License as 11 ;; it under the terms of the GNU General Public License as published by
12 ;; published by the Free Software Foundation; either version 3, or 12 ;; the Free Software Foundation; either version 3, or (at your option)
13 ;; (at your option) any later version. 13 ;; any later version.
14 14
15 ;; This program is distributed in the hope that it will be useful, 15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of 16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details. 18 ;; GNU General Public License for more details.
19 19
20 ;; You should have received a copy of the GNU General Public License 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 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA. 23 ;; Boston, MA 02110-1301, USA.
24 24
25 ;;; Commentary: 25 ;;; Commentary:
26 26
27 ;; Test cases from RFC 2202, "Test Cases for HMAC-MD5 and HMAC-SHA-1". 27 ;; Test cases from RFC 2202, "Test Cases for HMAC-MD5 and HMAC-SHA-1".