Skip to content

Commit 1016123

Browse files
author
Sebastian Carpenter
committed
updated WolfSSL-Manual Chapter 7
spelling and grammar updates
1 parent a18464a commit 1016123

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

wolfSSL/src/chapter07.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ wolfSSL (formerly CyaSSL) has support for **PEM**, and **DER** formats for certi
1010

1111
**DER**, or “Distinguished Encoding Rules”, is a binary format of a certificate. DER file extensions can include `.der` and `.cer`, and cannot be viewed with a text editor.
1212

13-
An X.509 certificate is encoded using ASN.1 format. The DER format is the ASN.1 encoding. The PEM format is Base64 encoded and wrapped with a human readable header and footer. TLS send certificates in DER format.
13+
An X.509 certificate is encoded using ASN.1 format. The DER format is the ASN.1 encoding. The PEM format is Base64 encoded and wrapped with a human readable header and footer. TLS sends certificates in DER format.
1414

1515
## Supported Certificate Extensions
1616

1717

1818
If an unsupported or unknown extension that is marked as critical is found, then
1919
an error message is returned, otherwise unsupported or unknown extensions found
20-
are ignored. Certificate extension parsing expect that at the very least
20+
are ignored. Certificate extension parsing expects that at the very least
2121
`--enable-certext` (macro WOLFSSL_CERT_EXT) has been used when
2222
compiling the wolfSSL library. This is a high level list of certificate
23-
extensions that can be **parsed** and at least part if not all of the extensions
23+
extensions that can be **parsed** and at least part, if not all, of the extensions
2424
be used.
2525

2626
| Extension From [RFC 5280](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2) | Supported |
@@ -405,7 +405,7 @@ Supported types are:
405405
* `PKCS8_PRIVATEKEY_TYPE`
406406
* `PKCS8_ENC_PRIVATEKEY_TYPE`
407407

408-
Now the buffer `pemCert<` holds the PEM format of the certificate.
408+
Now the buffer `pemCert` holds the PEM format of the certificate.
409409

410410
If you wish to create a CA signed certificate then a couple of steps are required. After filling in the subject information as before, you’ll need to set the issuer information from the CA certificate. This can be done with `SetIssuer()` like this:
411411

0 commit comments

Comments
 (0)