···1818work well with wire keys include:
19192020- GPG
2121+- [sops](https://github.com/getsops/sops) ([Example](#encrypting-with-sops))
2122- [Age](https://github.com/FiloSottile/age)
2223- Anything that non-interactively decrypts to `stdout`.
2324···9394[user@node-1]$ cat /run/keys/file.txt
9495Hello World!
9596```
9797+9898+### Encrypting with Sops
9999+100100+With some sops file:
101101+102102+```yaml:line-numbers [secret.yaml]
103103+hive:
104104+ some_secret: XXXXXXXXXXXXXXXXXXXXXXX
105105+something:
106106+ another_secret: XXXXXXXXXXXXXXXXXXXXXXX
107107+```
108108+109109+You can easily create a function to grab values out of your encrypted sops file:
110110+111111+<<< @/snippets/guides/sops-example.nix [hive.nix]
9611297113### Encrypting with KeepassXC
98114