-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #456 from jku/privkeyuri
signer: Add abstract Key class, implement private key uri scheme for Signer
- Loading branch information
Showing
8 changed files
with
923 additions
and
289 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
""" | ||
The Signer API | ||
This module provides extensible interfaces for public keys and signers: | ||
Some implementations are provided by default but more can be added by users. | ||
""" | ||
from securesystemslib.signer._key import KEY_FOR_TYPE_AND_SCHEME, Key, SSlibKey | ||
from securesystemslib.signer._signature import GPGSignature, Signature | ||
from securesystemslib.signer._signer import ( | ||
SIGNER_FOR_URI_SCHEME, | ||
GPGSigner, | ||
SecretsHandler, | ||
Signer, | ||
SSlibSigner, | ||
) |
Oops, something went wrong.