File: README.md

package info (click to toggle)
golang-github-cloudflare-cfssl 1.6.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,220 kB
  • sloc: asm: 1,936; javascript: 652; makefile: 94; sql: 89; sh: 64; python: 11
file content (20 lines) | stat: -rw-r--r-- 526 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
1. To generate 5min-rsa.pem and 5min-rsa-key.pem

```
$ cfssl gencert -initca ca_csr_rsa.json | cfssljson -bare 5min-rsa
```

2. To generate 5min-ecdsa.pem and 5min-ecdsa-key.pem

```
$ cfssl gencert -initca ca_csr_ecdsa.json | cfssljson -bare 5min-ecdsa
```

2. To generate 5min-ed25519.pem and 5min-ed25519-key.pem

```
$ cfssl gencert -initca ca_csr_ed25519.json | cfssljson -bare 5min-ed25519
```

The above commands will generate 5min-rsa.csr, 5min-ecdsa.csr 5min-ed25519.csr
accordingly, but those files can be ignored.