Skip to content

Commit

Permalink
Add missing docstring from_cryptography_key
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyClaeys committed Dec 15, 2023
1 parent a3b58b7 commit 2268a9e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pycose/keys/cosekey.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ def from_pem_private_key(
:param pem: PEM-encoded private key.
:param password: Password to decrypt the key.
:param optional_params: Optional parameters to add to the key.
:return: an initialized CoseKey object.
"""
ext_key = load_pem_private_key(pem.encode(), password)
Expand All @@ -121,6 +122,7 @@ def from_pem_public_key(
Initialize a COSE key from a PEM-encoded public key.
:param pem: PEM-encoded public key.
:param optional_params: Optional parameters to add to the key.
:return: an initialized CoseKey object.
"""
ext_key = load_pem_public_key(pem.encode())
Expand Down

0 comments on commit 2268a9e

Please sign in to comment.