gobuch-trainingfellow/registrierung/certs
2020-08-31 15:23:01 +02:00
..
README.txt initial import 2020-08-31 15:23:01 +02:00
registrierung.tf.crt initial import 2020-08-31 15:23:01 +02:00
registrierung.tf.csr initial import 2020-08-31 15:23:01 +02:00
registrierung.tf.key initial import 2020-08-31 15:23:01 +02:00
registrierung.tf.request.conf initial import 2020-08-31 15:23:01 +02:00
tfRoot-cert.request.conf initial import 2020-08-31 15:23:01 +02:00
tfRoot.crt initial import 2020-08-31 15:23:01 +02:00
tfRoot.key initial import 2020-08-31 15:23:01 +02:00
tfRoot.srl initial import 2020-08-31 15:23:01 +02:00

Zertifikate erstellen für Traing Fellow
---------------------------------------

- Root Zertifikat erstellen:

```
openssl genrsa -out tfRoot.key 2048
openssl req -x509 -new -nodes -key tfRoot.key -sha256 -days 3650 -out tfRoot.crt -config tfRoot-cert.request.conf
```

- Zertifikat für Server erstellen:

```
#CSR erstellen
openssl req -new -sha256 -nodes -out registrierung.tf.csr -newkey rsa:2048 -keyout registrierung.tf.key -config registrierung.tf.request.conf

openssl x509 -req -in registrierung.tf.csr -CA tfRoot.crt -CAkey tfRoot.key -CAcreateserial -out registrierung.tf.crt -days 3650 -sha256
```