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 
11 /* All options are either 1 for true or 0 for false w/ the exception	*/
12 /*  of SECUREDELETE which may be anything from 0 to 127.		*/
13 /* All options may be overridden on the command line.			*/
14 
15 /* whether or not to compress files */
16 #define COMPRESS 1
17 /* send output to stdout */
18 #define STANDARDOUT 0
19 /* remove input files after processing */
20 #define REMOVE 1
21 /* how many times to overwrite input files before deleting */
22 #define SECUREDELETE 3
23