Skip to content

Commit e45d4e8

Browse files
committed
Text edits.
1 parent 7ef44a5 commit e45d4e8

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/cryptojwt/jwe/jwe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class JWE(JWx):
7676

7777
def encrypt(self, keys=None, cek="", iv="", **kwargs):
7878
"""
79-
Encrypt a payload
79+
Encrypt a payload.
8080
8181
:param keys: A set of possibly usable keys
8282
:param cek: Content master key

src/cryptojwt/jwe/jwe_ec.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,7 @@ def encrypt(self, key=None, iv="", cek="", **kwargs):
190190
"""
191191
Produces a JWE as defined in RFC7516 using an Elliptic curve key
192192
193-
:param key: *Not used>, only there to present the same API as
194-
JWE_RSA and JWE_SYM
193+
:param key: *Not used*, only there to present the same API as JWE_RSA and JWE_SYM
195194
:param iv: Initialization vector
196195
:param cek: Content master key
197196
:param kwargs: Extra keyword arguments

src/cryptojwt/jwk/rsa.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ def load_key(self, key):
423423

424424
def load(self, filename):
425425
"""
426-
Load a RSA key from a file. Once we have the key do a serialization.
426+
Load a RSA key from a PEM encoded file. Once we have the key do a serialization.
427427
428428
:param filename: File name
429429
"""

0 commit comments

Comments
 (0)