Coverage for src/ansible_sign/signing/__init__.py: 100%
1 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-09-05 08:12 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2024-09-05 08:12 +0000
1"""
2This package handles various ways of signing Ansible content.
4All verification methods contain two modules:
61) A verifier subclass of SignatureVerifier, which makes no assumptions about
7 the verification strategy used. All it demands is the implementation of a
8 'verify' method.
102) A signer subclass of SignatureSigner, which similarly makes no assumptions
11 leaving it to each subclass to implement sign() as it sees fit.
12"""
14from .gpg import GPGSigner, GPGVerifier # noqa
16# from .base import *