hkdf: when HMAC key is all zeros, still set a valid key length
[openssl.git] / doc / HOWTO / certificates.txt
index c2efdca8dc1a59ecb15f88d86966c63a2c766d7c..54704bcf05bab96402a8d2030bfb1f1a03ef4c64 100644 (file)
@@ -30,7 +30,7 @@ keys, so before you create a certificate or a certificate request, you
 need to create a private key.
 
 Private keys are generated with 'openssl genrsa -out privkey.pem' if
-you want a RSA private key, or if you want a DSA private key:
+you want an RSA private key, or if you want a DSA private key:
 'openssl dsaparam -out dsaparam.pem 2048; openssl gendsa -out privkey.pem dsaparam.pem'.
 
 The private keys created by these commands are not passphrase protected;
@@ -48,7 +48,7 @@ give you the result back, thus making it authentic according to their
 policies).  A certificate request is sent to a certificate authority
 to get it signed into a certificate. You can also sign the certificate
 yourself if you have your own certificate authority or create a
-self-signed certificate (typically for testing purpose).
+self-signed certificate (typically for testing purposes).
 
 The certificate request is created like this:
 
@@ -106,5 +106,5 @@ some applications, you don't even have to do that.
 By now, you have your certificate and your private key and can start
 using applications that depend on it.
 
--- 
+--
 Richard Levitte