| 14 |
* needed on buffers full of bytes, and then call MD5Final, which |
* needed on buffers full of bytes, and then call MD5Final, which |
| 15 |
* will fill a supplied 16-byte array with the digest. |
* will fill a supplied 16-byte array with the digest. |
| 16 |
*/ |
*/ |
| 17 |
|
/* |
| 18 |
|
* This program is free software; you can redistribute it and/or modify |
| 19 |
|
* it under the terms of the GNU General Public License as published by |
| 20 |
|
* the Free Software Foundation; either version 2 of the License, or |
| 21 |
|
* (at your option) any later version. |
| 22 |
|
* |
| 23 |
|
* This program is distributed in the hope that it will be useful, |
| 24 |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 25 |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 26 |
|
* GNU General Public License for more details. |
| 27 |
|
* |
| 28 |
|
* You should have received a copy of the GNU General Public License |
| 29 |
|
* along with this program; if not, write to the Free Software |
| 30 |
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 31 |
|
*/ |
| 32 |
#include <string.h> /* for memcpy() */ |
#include <string.h> /* for memcpy() */ |
| 33 |
#include "md5.h" |
#include "md5.h" |
| 34 |
|
|