gitextract_a732ze8h/ ├── .gitattributes ├── .github/ │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.md │ │ └── config.yml │ └── workflows/ │ ├── LICENSE.suffix.txt │ ├── build.yml │ ├── certs/ │ │ ├── README │ │ ├── uitacllc.crt │ │ └── uitacllc.key │ ├── interop.yml │ ├── ronn.yml │ └── test.yml ├── LICENSE ├── README.md ├── SIGSUM.md ├── age.go ├── age_test.go ├── agessh/ │ ├── agessh.go │ ├── agessh_test.go │ └── encrypted_keys.go ├── armor/ │ ├── armor.go │ └── armor_test.go ├── cmd/ │ ├── age/ │ │ ├── age.go │ │ ├── age_test.go │ │ ├── encrypted_keys.go │ │ ├── parse.go │ │ ├── testdata/ │ │ │ ├── armor.txt │ │ │ ├── batchpass.txt │ │ │ ├── duplicates.txt │ │ │ ├── ed25519.txt │ │ │ ├── encrypted_keys.txt │ │ │ ├── hybrid.txt │ │ │ ├── keygen.txt │ │ │ ├── output_file.txt │ │ │ ├── pkcs8.txt │ │ │ ├── plugin.txt │ │ │ ├── rsa.txt │ │ │ ├── scrypt.txt │ │ │ ├── terminal.txt │ │ │ ├── usage.txt │ │ │ └── x25519.txt │ │ ├── tui.go │ │ └── wordlist.go │ ├── age-inspect/ │ │ └── inspect.go │ ├── age-keygen/ │ │ └── keygen.go │ └── age-plugin-batchpass/ │ └── plugin-batchpass.go ├── doc/ │ ├── age-inspect.1 │ ├── age-inspect.1.html │ ├── age-inspect.1.ronn │ ├── age-keygen.1 │ ├── age-keygen.1.html │ ├── age-keygen.1.ronn │ ├── age-plugin-batchpass.1 │ ├── age-plugin-batchpass.1.html │ ├── age-plugin-batchpass.1.ronn │ ├── age.1 │ ├── age.1.html │ └── age.1.ronn ├── extra/ │ ├── age-plugin-pq/ │ │ └── plugin-pq.go │ ├── age-plugin-tag/ │ │ └── plugin-tag.go │ └── age-plugin-tagpq/ │ └── plugin-tagpq.go ├── go.mod ├── go.sum ├── internal/ │ ├── bech32/ │ │ ├── bech32.go │ │ └── bech32_test.go │ ├── format/ │ │ ├── format.go │ │ └── format_test.go │ ├── inspect/ │ │ ├── inspect.go │ │ └── inspect_test.go │ ├── stream/ │ │ ├── stream.go │ │ └── stream_test.go │ └── term/ │ ├── term.go │ └── term_windows.go ├── logo/ │ └── README.md ├── parse.go ├── plugin/ │ ├── client.go │ ├── client_test.go │ ├── encode.go │ ├── example_test.go │ ├── plugin.go │ └── tui.go ├── pq.go ├── primitives.go ├── recipients_test.go ├── scrypt.go ├── tag/ │ ├── internal/ │ │ ├── age-plugin-tagtest/ │ │ │ └── plugin-tagtest.go │ │ └── tagtest/ │ │ └── tagtest.go │ ├── tag.go │ └── tag_test.go ├── testdata/ │ ├── example.age │ ├── example.zip.age │ └── example_keys.txt ├── testkit_test.go └── x25519.go