-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
77 lines (75 loc) · 2.34 KB
/
config.toml
File metadata and controls
77 lines (75 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[database]
# `myhashes.db` can be changed if you wish.
db_string = "sqlite://myhashes.db"
table_name = "hashes"
[hashes]
crc32 = true
md2 = false
md4 = false
md5 = true
sha1 = true
sha224 = false
sha256 = true
sha384 = false
sha512 = false
sha3_224 = false
sha3_256 = false
sha3_384 = false
sha3_512 = false
keccak224 = false
keccak256 = false
keccak384 = false
keccak512 = false
blake2s256 = false
blake2b512 = false
belt_hash = false
whirlpool = false
tiger = false
tiger2 = false
streebog256 = false
streebog512 = false
ripemd128 = false
ripemd160 = false
ripemd256 = false
ripemd320 = false
fsb160 = false
fsb224 = false
fsb256 = false
fsb384 = false
fsb512 = false
sm3 = false
gost94_cryptopro = false
gost94_test = false
gost94_ua = false
gost94_s2015 = false
groestl224 = false
groestl256 = false
groestl384 = false
groestl512 = false
shabal192 = false
shabal224 = false
shabal256 = false
shabal384 = false
shabal512 = false
# Command line option defaults
# All options can be specified here and will be used as defaults
# Command line arguments will always override these settings
[options]
# fail_fast = true # Stop after encountering an error
# silent_failures = true # Silence error messages
# retry_count = 5 # Number of retries for operations (default: 3)
# retry_delay = 10 # Delay in seconds between retries (default: 5)
# sql_only = true # Only output to SQLite database
# json_only = true # Only output to JSON
pretty_json = true # Pretty print the JSON output
# use_wal = true # Use sqlite Write Ahead Logging
# max_depth = 50 # Maximum number of directories to traverse (default: 30)
# no_follow_symlinks = true # Do not follow symlinks
# breadth_first = true # Hash top level directory files first
# dry_run = true # Run without actually saving anything
# compress = true # Compress files when writing to disk
# compression_level = 9 # Compression level (1-9, default: 6)
# hash_compressed = true # Hash the compressed file instead of uncompressed
# decompress = true # Decompress files before hashing
# hash_both = true # Hash both compressed and decompressed content
# hash_uncompressed = true # Always hash uncompressed content