13 lines
297 B
Markdown
13 lines
297 B
Markdown
# archinstall
|
|
|
|
# Archinstall configuration for XO Servers
|
|
|
|
## User credentials encryption and decryption
|
|
|
|
### To encrypt
|
|
gpg --output user_credentials.crypt --symmetric --cypher-algo AES256 user_credentials.json
|
|
|
|
### To decrypt
|
|
gpg --output user_credentials.json --decrypt user_credentials.crypt
|
|
|