oso.framework.plugin.addons.signing_server package¶
Subpackages¶
- oso.framework.plugin.addons.signing_server.generated namespace
- Submodules
- oso.framework.plugin.addons.signing_server.generated.server_pb2 module
- oso.framework.plugin.addons.signing_server.generated.server_pb2_grpc module
Crypto
CryptoServicer
CryptoServicer.Decrypt()
CryptoServicer.DecryptFinal()
CryptoServicer.DecryptInit()
CryptoServicer.DecryptSingle()
CryptoServicer.DecryptUpdate()
CryptoServicer.DeriveKey()
CryptoServicer.Digest()
CryptoServicer.DigestFinal()
CryptoServicer.DigestInit()
CryptoServicer.DigestKey()
CryptoServicer.DigestSingle()
CryptoServicer.DigestUpdate()
CryptoServicer.Encrypt()
CryptoServicer.EncryptFinal()
CryptoServicer.EncryptInit()
CryptoServicer.EncryptSingle()
CryptoServicer.EncryptUpdate()
CryptoServicer.GenerateKey()
CryptoServicer.GenerateKeyPair()
CryptoServicer.GenerateRandom()
CryptoServicer.GetAttributeValue()
CryptoServicer.GetMechanismInfo()
CryptoServicer.GetMechanismList()
CryptoServicer.Login()
CryptoServicer.Logout()
CryptoServicer.ReencryptSingle()
CryptoServicer.RewrapKeyBlob()
CryptoServicer.SetAttributeValue()
CryptoServicer.Sign()
CryptoServicer.SignFinal()
CryptoServicer.SignInit()
CryptoServicer.SignSingle()
CryptoServicer.SignUpdate()
CryptoServicer.UnwrapKey()
CryptoServicer.Verify()
CryptoServicer.VerifyFinal()
CryptoServicer.VerifyInit()
CryptoServicer.VerifySingle()
CryptoServicer.VerifyUpdate()
CryptoServicer.WrapKey()
CryptoStub
Module contents¶
Signing Server Addon.
- class oso.framework.plugin.addons.signing_server.SigningServerAddon(framework_config: Any, addon_config: SigningServerConfig)[source]¶
Bases:
AddonProtocol
Signing Server.
- Parameters:
framework_config – Whole application configuration.
plugin_config – Configuration specific to this addon.
- config¶
- configure(addon_config: SigningServerConfig) SigningServerAddon ¶
Return the addon instance.
- health_check() ComponentStatus [source]¶
Check the GREP11 server health status.
- Returns:
OSO component status.
- Return type:
oso.framework.data.types.ComponentStatus
- class oso.framework.plugin.addons.signing_server.SigningServerConfig(*, type: ImportString, ca_cert: str, client_cert: str, client_key: str, grep11_endpoint: str = 'localhost', keystore_path: str)[source]¶
Bases:
BaseAddonConfig
Signing Server Addon Specific Configuration.
- oso.framework.plugin.addons.signing_server.configure(framework_config: Any, addon_config: SigningServerConfig) SigningServerAddon [source]¶
Return the addon instance.