@@ -6,7 +6,7 @@ JSON Web Encryption (JWE)
66JSON Web Encryption (JWE) represents encrypted content using JSON-based data
77structures.
88
9- It's assumed that you know all you need to know about key handling if not
9+ It is assumed that you know all you need to know about key handling if not
1010please spend some time reading keyhandling _ .
1111
1212When it comes to JWE there are basically 2 things you want to be able to do:
@@ -17,7 +17,7 @@ Encrypting a document
1717---------------------
1818
1919This is the high level way of doing things.
20- There are few steps you have to go through. Let us start with an example and then break it into its parts::
20+ There are a few steps you have to go through. Let us start with an example and then break it into its parts::
2121
2222 >>> from cryptojwt.jwk.rsa import RSAKey
2323 >>> from cryptojwt.jwe.jwe import JWE
@@ -31,9 +31,9 @@ There are few steps you have to go through. Let us start with an example and the
3131
3232The steps:
3333
34- 1. You need an encryption key. The key *MUST * be instances of
34+ 1. You need an encryption key. The key *MUST * be an instance of
3535 :py:class: `cryptojwt.jwk.JWK `.
36- 2. You need the information that are to be signed. It must be in the form of a string.
36+ 2. You need the information that is to be signed. It must be in the form of a string.
3737 3. You initiate the encryptor, provide it with the message and other
3838 needed information.
3939 4. And then you encrypt as described in RFC7516 _ .
@@ -74,4 +74,4 @@ or if you know what you're doing::
7474
7575
7676
77- .. _RFC7516 : https://tools.ietf.org/html/rfc7516
77+ .. _RFC7516 : https://tools.ietf.org/html/rfc7516
0 commit comments