Felhasználói eszközök

Eszközök a webhelyen


openssl

Különbségek

A kiválasztott változat és az aktuális verzió közötti különbségek a következők.

Összehasonlító nézet linkje

Következő változat
Előző változat
openssl [2017/01/10 08:31] – létrehozva daevidtopenssl [2018/10/03 13:31] (aktuális) – külső szerkesztés 127.0.0.1
Sor 1: Sor 1:
 +=== Generate ===
 == Generate a new private key and Certificate Signing Request == == Generate a new private key and Certificate Signing Request ==
   openssl req -out CSR.csr -new -newkey rsa:2048 -nodes -keyout privateKey.key   openssl req -out CSR.csr -new -newkey rsa:2048 -nodes -keyout privateKey.key
Sor 9: Sor 10:
 == Remove a passphrase from a private key == == Remove a passphrase from a private key ==
   openssl rsa -in privateKey.pem -out newPrivateKey.pem   openssl rsa -in privateKey.pem -out newPrivateKey.pem
 +  
 +=== Check ===
 +
 +== Check a Certificate Signing Request (CSR) ==
 +  openssl req -text -noout -verify -in CSR.csr
 +== Check a private key ==
 +  openssl rsa -in privateKey.key -check
 +== Check a certificate ==
 +  openssl x509 -in certificate.crt -text -noout
 +== Check a PKCS#12 file (.pfx or .p12) ==
 +  openssl pkcs12 -info -in keyStore.p12
 +
 +== To find out if your certificate matches the key file ==
 +To quickly make sure the files match, display the modulus value of each file:
 +  openssl rsa -noout -modulus -in FILE.key
 +  openssl req -noout -modulus -in FILE.csr
 +  openssl x509 -noout -modulus -in FILE.cer
 +
 +If everything matches (same modulus), the files are compatible public key-wise (but this does not guaranty the private key is valid). If not, one of the file is not related to the others.
 +
 +=== SSH-Keygen ===
 +  ssh-keygen -t rsa -b 4096
openssl.1484037116.txt.gz · Utolsó módosítás: 2018/10/03 13:31 (külső szerkesztés)