File: __init__.py

package info (click to toggle)
python-sshsig 0.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 236 kB
  • sloc: python: 901; sh: 53; makefile: 9
file content (9 lines) | stat: -rw-r--r-- 193 bytes parent folder | download
1
2
3
4
5
6
7
8
9
from .ssh_public_key import PublicKey
from .sshsig import InvalidSignature, check_signature, verify

__all__ = [
    'InvalidSignature',
    'PublicKey',
    'check_signature',
    'verify',
]