Skip to content

Commit 77ad596

Browse files
authored
Upatated documentation to match code
Updated documentation to match code after adding the password parameter
1 parent ff3f974 commit 77ad596

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jwkest/jwk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ def import_rsa_key_from_file(filename, passphrase=None):
9494
def import_rsa_key(key, passphrase=None):
9595
"""
9696
Extract an RSA key from a PEM-encoded certificate
97-
9897
:param key: RSA key encoded in standard form
98+
:param passphrase: Password to open the certificate (Optional)
9999
:return: RSA key instance
100100
"""
101101
return importKey(key, passphrase=passphrase)

0 commit comments

Comments
 (0)