Anzeige, Verifikation, Hash-Links von SSL-Zertifikaten

Schlüssel anzeigen: openssl rsa -text -noout -in newreq.pem Zertifikatsanforderung anzeigen: openssl req -text -noout -in newreq.pem Zertifikat anzeigen: openssl x509 -text -noout -in newcert.pem Fingerprint des Zertifikats berechnen: openssl x509 -fingerprint -noout -in newcert.pem Verifikation des Zertifikats: openssl verify -CAfile demoCA/cacert.pem newcert.pem Hash-Wert eines Zertifikats bestimmen und Link legen: ln…

Weiterlesen

The story of #! (hashbang)

Once upon a time there was the Bourne shell. Since there was only „the„shell, there was no trouble deciding how to run a script : run it with „the“ shell. It worked, and everyone was happy. Along came progress, and wrote another shell. The people thought this was good, for…

Weiterlesen