@@ -6,7 +6,7 @@ JSON Web Encryption (JWE)
6
6
JSON Web Encryption (JWE) represents encrypted content using JSON-based data
7
7
structures.
8
8
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
10
10
please spend some time reading keyhandling _ .
11
11
12
12
When it comes to JWE there are basically 2 things you want to be able to do:
@@ -17,7 +17,7 @@ Encrypting a document
17
17
---------------------
18
18
19
19
This 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::
21
21
22
22
>>> from cryptojwt.jwk.rsa import RSAKey
23
23
>>> 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
31
31
32
32
The steps:
33
33
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
35
35
: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.
37
37
3. You initiate the encryptor, provide it with the message and other
38
38
needed information.
39
39
4. And then you encrypt as described in RFC7516 _ .
@@ -74,4 +74,4 @@ or if you know what you're doing::
74
74
75
75
76
76
77
- .. _RFC7516 : https://tools.ietf.org/html/rfc7516
77
+ .. _RFC7516 : https://tools.ietf.org/html/rfc7516
0 commit comments