-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.yaml
More file actions
70 lines (62 loc) · 1.44 KB
/
config.example.yaml
File metadata and controls
70 lines (62 loc) · 1.44 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
# RPG Configuration File Example
# Copy this file to 'config.yaml' and customize as needed
# Default settings for password generation
defaults:
length: 16
use_uppercase: true
use_lowercase: true
use_digits: true
use_special: true
passphrase_words: 4
passphrase_separator: "-"
passphrase_capitalize: true
# Password templates for common use cases
templates:
# Standard web password (most websites)
web:
length: 16
use_uppercase: true
use_lowercase: true
use_digits: true
use_special: true
# WiFi password (no special chars for compatibility)
wifi:
length: 24
use_uppercase: true
use_lowercase: true
use_digits: true
use_special: false
# PIN code (numbers only)
pin:
length: 6
use_uppercase: false
use_lowercase: false
use_digits: true
use_special: false
custom_chars: "0123456789"
# Memorable passphrase
memorable:
passphrase: true
word_count: 4
separator: "-"
capitalize: true
include_number: true
# Maximum security password
maximum:
length: 32
use_uppercase: true
use_lowercase: true
use_digits: true
use_special: true
# Database password (alphanumeric, long)
database:
length: 24
use_uppercase: true
use_lowercase: true
use_digits: true
use_special: false
# Output settings
output:
show_strength: true
use_colors: true
save_to_history: false # Set to true to save password hashes to history