comparison lib/gc-pbkdf2-sha1.c @ 7584:a88f85e4728f

* lib/arcfour.c: Assume config.h. * lib/arctwo.c: Likewise. * lib/base64.c: Likewise. * lib/check-version.c: Likewise. * lib/crc.c: Likewise. * lib/des.c: Likewise. * lib/gc-gnulib.c: Likewise. * lib/gc-libgcrypt.c: Likewise. * lib/gc-pbkdf2-sha1.c: Likewise. * lib/getaddrinfo.c: Likewise. * lib/getdelim.c: Likewise. * lib/getline.c: Likewise. * lib/hmac-md5.c: Likewise. * lib/hmac-sha1.c: Likewise. * lib/iconvme.c: Likewise. * lib/md2.c: Likewise. * lib/md4.c: Likewise. * lib/memxor.c: Likewise. * lib/read-file.c: Likewise. * lib/readline.c: Likewise. * lib/rijndael-alg-fst.c: Likewise. * lib/rijndael-api-fst.c: Likewise. * lib/xgetdomainname.c: Likewise.
author Eric Blake <ebb9@byu.net>
date Sun, 29 Oct 2006 21:52:55 +0000
parents f003a21f905d
children bae59d8f043a
comparison
equal deleted inserted replaced
7583:05f15d427bf3 7584:a88f85e4728f
1 /* gc-pbkdf2-sha1.c --- Password-Based Key Derivation Function a'la PKCS#5 1 /* gc-pbkdf2-sha1.c --- Password-Based Key Derivation Function a'la PKCS#5
2 Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. 2 Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
3 3
4 This program is free software; you can redistribute it and/or modify 4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by 5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option) 6 the Free Software Foundation; either version 2, or (at your option)
7 any later version. 7 any later version.
16 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ 16 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
17 17
18 /* Written by Simon Josefsson. The comments in this file are taken 18 /* Written by Simon Josefsson. The comments in this file are taken
19 from RFC 2898. */ 19 from RFC 2898. */
20 20
21 #ifdef HAVE_CONFIG_H 21 #include <config.h>
22 # include <config.h>
23 #endif
24 22
25 #include "gc.h" 23 #include "gc.h"
26 24
27 #include <stdlib.h> 25 #include <stdlib.h>
28 #include <string.h> 26 #include <string.h>