Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion securesystemslib/keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ def import_rsakey_from_pem(pem, scheme='rsassa-pss-sha256'):

elif is_pem_private(pem):
# Return an rsakey object (RSAKEY_SCHEMA) with the private key included.
return import_rsakey_from_private_pem(pem, password=None)
return import_rsakey_from_private_pem(pem, scheme, password=None)

else:
raise securesystemslib.exceptions.FormatError('PEM contains neither a'
Expand Down