request.operation_processor.sign ================================ .. py:module:: request.operation_processor.sign .. autoapi-nested-parse:: Signature operation processor classes. Module Contents --------------- .. py:class:: GenericSigner Bases: :py:obj:`trustpoint.logger.LoggerMixin` Provides general signing functionality. .. py:method:: sign(data, signer_credential) :staticmethod: Sign the provided data with the given signer credential. .. py:class:: GenericSignatureVerifier Provides general signature verification functionality. .. py:method:: verify(data, signature, signer_certificate) :staticmethod: Verify the provided signature over the data using the signer's certificate. .. py:class:: LocalCaCmpSignatureProcessor(message = None) Bases: :py:obj:`trustpoint.logger.LoggerMixin`, :py:obj:`request.operation_processor.base.AbstractOperationProcessor` Operation processor for signing a CMP message via a local CA. .. py:method:: process_operation(context) Sign the provided data using the local CA's private key. .. py:method:: get_signature() Get the generated signature.