Coverage for src/ansible_sign/signing/__init__.py: 100%

1 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2024-03-29 20:49 +0000

1""" 

2This package handles various ways of signing Ansible content. 

3 

4All verification methods contain two modules: 

5 

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. 

9 

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""" 

13 

14from .gpg import GPGSigner, GPGVerifier # noqa 

15 

16# from .base import *