Added "iterations" configuration parameter which will encrypt the data
[pwmd.git] / doc / pwmdrc
blob09e43299447fb364a1ef3792c75485f218b348c8
2 # Example configuration file. If a configuration file doesn't exist a new one
3 # will be created in ~/.pwmdrc with the program defaults.
5 [default]
7 # Location of the listening socket.
8 socket_path=~/.pwmd/socket
10 # Where files will be read and stored.
11 data_directory=~/.pwmd
13 # Log file location.
14 log_path=~/.pwmd/.log
16 # Set to true to enable logging to log_path.
17 enable_logging=false
19 # File and key cache size. Must be in multiples of your systems PAGE_SIZE. The
20 # default below on a x86 Linux system is one page.
21 #cache_size=4096
23 # Try setting to true if you have resource allocation limits and are getting
24 # memory allocation failures.
25 disable_mlockall=false
27 # Number of encryption/decryption iterations. This is the number of times the
28 # data will be encrypted. Setting this to a high value (10000) will
29 # drastically slow down dictionary attacks. If a file was encrypted with an
30 # iteration value other than the current one, decryption will fail. The
31 # default is 0.
32 #iterations=10000
34 # Files, separated by commas, to add to the file cache upon startup. You will
35 # be prompted for the key for each file. The files are looked for in
36 # data_directory.
37 #cache_push=somefile, anotherfile