Changes in trunk/COPYING [30:18]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/COPYING
r30 r18 131 131 132 132 (vi) Support for the MD5 hash algorithm is provided by code 133 from b usybox which is distributed under theGPL.134 135 /* md5.c - Functions to compute MD5 message digest of files or memory blocks136 * according to the definition of MD5 in RFC 1321 from April 1992.137 * Copyright (C) 1995, 1996 Free Software Foundation, Inc.138 *139 * NOTE: The canonical source of this file is maintained with the GNU C140 * Library. Bugs can be reported to bug-glibc@prep.ai.mit.edu.141 *142 * This program is free software; you can redistribute it and/or modify it143 * under the terms of the GNU General Public License as published by the144 * Free Software Foundation; either version 2, or (at your option) any145 * later version.146 *147 * This program is distributed in the hope that it will be useful,148 * but WITHOUT ANY WARRANTY; without even the implied warranty of149 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the150 * GNU General Public License for more details.151 *152 * You should have received a copy of the GNU General Public License153 * along with this program; if not, write to the Free Software Foundation,154 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.155 */156 157 /* Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995. */158 133 from beecrypt which is distributed under the LGPL. 134 135 /* 136 * md5.c 137 * 138 * MD5 hash function, code 139 * 140 * Copyright (c) 2000 Virtual Unlimited B.V. 141 * 142 * Author: Bob Deblier <bob@virtualunlimited.com> 143 * 144 * This library is free software; you can redistribute it and/or 145 * modify it under the terms of the GNU Lesser General Public 146 * License as published by the Free Software Foundation; either 147 * version 2.1 of the License, or (at your option) any later version. 148 * 149 * This library is distributed in the hope that it will be useful, 150 * but WITHOUT ANY WARRANTY; without even the implied warranty of 151 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 152 * Lesser General Public License for more details. 153 * 154 * You should have received a copy of the GNU Lesser General Public 155 * License along with this library; if not, write to the Free Software 156 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 157 * USA 158 */ 159 159 160 160 (vi) Support for the SHA-1 hash algorithm is provided by code
Note:
See TracChangeset
for help on using the changeset viewer.