mirror of
https://github.com/gocsaf/csaf.git
synced 2025-12-22 18:15:42 +01:00
* Add an OpenPGP test keypair. * Move script parts of documentation into script, so they can be used on a fresh Ubuntu 20.04 system for within a github action to setup a csaf_provider and upload documents to it for an integration test. * Use dineshsonachalam/markdown-autodocs in github action to automatically insert lines from the scripts into the docs. Co-authored-by: Bernhard Reiter <bernhard@intevation.de>
23 lines
471 B
Markdown
23 lines
471 B
Markdown
OpenPGP key-pair for testing.
|
|
|
|
This has been created with:
|
|
* gpg (GnuPG) 2.2.19
|
|
* (linked with) libgcrypt 1.8.5
|
|
|
|
### `test1@example.com`
|
|
|
|
```bash
|
|
gpg --full-gen-key
|
|
RSA (sign only)
|
|
Requested keysize is 4096 bits
|
|
key does not expire at all
|
|
Real name: test1
|
|
Email address: test1@example.com
|
|
comment:
|
|
```
|
|
|
|
```bash
|
|
gpg --export-secret-key --armor test1 > private.asc
|
|
gpg --export --armor test1 > public.asc
|
|
```
|
|
The passphrase for this test OpenPGP key-pair is: `security123`
|