SUNWlibgmime.copyright revision 12664
12664N/AFor the avoidance of doubt, except that if any license choice other
12664N/Athan GPL or LGPL is available it will apply instead, Sun elects to
12664N/Ause only the General Public License version 2 (GPLv2) at this time
12664N/Afor any software where a choice of GPL license versions is made
12664N/Aavailable with the language indicating that GPLv2 or any later
12664N/Aversion may be used, or where a choice of which version of the GPL
12664N/Ais applied is otherwise unspecified.
12664N/A
12664N/A--------------------------------------------------------------------
12664N/A
12664N/AFor the avoidance of doubt, except that if any license choice other
12664N/Athan GPL or LGPL is available it will apply instead, Sun elects to
12664N/Ause only the Lesser General Public License version 2.1 (LGPLv2) at
12664N/Athis time for any software where a choice of LGPL license versions
12664N/Ais made available with the language indicating that LGPLv2.1 or any
12664N/Alater version may be used, or where a choice of which version of the
12664N/ALGPL is applied is otherwise unspecified.
12664N/A
12664N/A--------------------------------------------------------------------
12664N/A
12664N/A
12664N/A Copyright (C) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98
12664N/A Free Software Foundation, Inc.
12664N/A Copyright (C) 1987,88,89,90,91,92,93,94,96,97,98
12664N/A Free Software Foundation, Inc.
12664N/A Copyright (C) 1989,90,91,92,93,94,96,97 Free Software Foundation, Inc.
12664N/A Copyright (C) 2000-2008 Jeffrey Stedfast
12664N/A
12664N/A This program is free software; you can redistribute it and/or modify
12664N/A it under the terms of the GNU General Public License as published by
12664N/A the Free Software Foundation; either version 2 of the License, or
12664N/A (at your option) any later version.
12664N/A
12664N/A This program is distributed in the hope that it will be useful,
12664N/A but WITHOUT ANY WARRANTY; without even the implied warranty of
12664N/A MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12664N/A GNU General Public License for more details.
12664N/A
12664N/A You should have received a copy of the GNU General Public License
12664N/A along with this program; if not, write to the Free Software
12664N/A Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
12664N/A
12664N/A
12664N/A--------------------------------------------------------------------
12664N/A
12664N/A This code implements the MD5 message-digest algorithm.
12664N/A The algorithm is due to Ron Rivest. This code was
12664N/A written by Colin Plumb in 1993, no copyright is claimed.
12664N/A This code is in the public domain; do with it what you wish.
12664N/A
12664N/A Equivalent code is available from RSA Data Security, Inc.
12664N/A This code has been tested against that, and is equivalent,
12664N/A except that you don't need to include two pages of legalese
12664N/A with every copy.
12664N/A
12664N/A To compute the message digest of a chunk of bytes, declare an
12664N/A MD5Context structure, pass it to rpmMD5Init, call rpmMD5Update as
12664N/A needed on buffers full of bytes, and then call rpmMD5Final, which
12664N/A will fill a supplied 16-byte array with the digest.
12664N/A
12664N/A
12664N/A parts of this file are :
12664N/A MD5Context structure, pass it to md5_init, call md5_update as
12664N/A needed on buffers full of bytes, and then call md5_Final, which
12664N/A will fill a supplied 16-byte array with the digest.
12664N/A
12664N/A
12664N/A parts of this file are:
12664N/A Written March 1993 by Branko Lankester
12664N/A Modified June 1993 by Colin Plumb for altered md5.c.
12664N/A Modified October 1995 by Erik Troan for RPM
12664N/A
12664N/A
12664N/A--------------------------------------------------------------------
12664N/A Copyright (C) 1999-2008 Jeffrey Stedfast
12664N/A Copyright (C) 2000-2008 Jeffrey Stedfast
12664N/A Copyright (C) 2001-2008 Jeffrey Stedfast
12664N/A
12664N/A This library is free software; you can redistribute it and/or
12664N/A modify it under the terms of the GNU Lesser General Public License
12664N/A as published by the Free Software Foundation; either version 2.1
12664N/A of the License, or (at your option) any later version.
12664N/A
12664N/A This library is distributed in the hope that it will be useful,
12664N/A but WITHOUT ANY WARRANTY; without even the implied warranty of
12664N/A MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12664N/A Lesser General Public License for more details.
12664N/A
12664N/A You should have received a copy of the GNU Lesser General Public
12664N/A License along with this library; if not, write to the Free
12664N/A Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
12664N/A 02110-1301, USA.
12664N/A
12664N/A
12664N/A--------------------------------------------------------------------
12664N/A