25 lines
716 B
Markdown
25 lines
716 B
Markdown
|
# Configuration File
|
||
|
|
||
|
The Keyfork configuration file is used to store the integrity of the mnemonic
|
||
|
and record the provisioning of keys. The configuration file is created and
|
||
|
edited automatically when provisioning operations are performed.
|
||
|
|
||
|
Provisioners will store the name of the provisioner used, the account index,
|
||
|
an optional identifier for target discovery, and any additional arbitrary
|
||
|
metadata the provisioner may make use of.
|
||
|
|
||
|
```toml
|
||
|
# File automatically generated by `keyfork`
|
||
|
|
||
|
[mnemonic]
|
||
|
hash = "67c945b48b4ab248bdbe630dd6ea0d56de3bb2ed13c3836dbcc0c04967a59b35"
|
||
|
|
||
|
[[provisioner]]
|
||
|
name = "openpgp-card"
|
||
|
account = 0
|
||
|
identifier = "0006:26144195"
|
||
|
|
||
|
[[provisioner.metadata]]
|
||
|
cardholder_name = "Ryan Heywood"
|
||
|
```
|