1 /* ====================================================================
2  * Copyright (c) 2002 Johnny Shelley.  All rights reserved.
3  *
4  * Bcrypt is licensed under the BSD software license. See the file
5  * called 'LICENSE' that you should have received with this software
6  * for details
7  * ====================================================================
8  */
9 
10 #include <stdlib.h>
11 #include <stdio.h>
12 #include <string.h>
13 
14 #ifndef WIN32	/* These libraries don't exist on Win32 */
15 #include <unistd.h>
16 #include <termios.h>
17 #include <sys/time.h>
18 #endif
19 
20 #include <sys/types.h>
21 #include <sys/stat.h>
22 #include <zlib.h>
23 
24