Finish first pass at secio implementation

This commit is contained in:
Alex Stokes
2019-08-23 16:55:49 +02:00
parent af2e50aaf4
commit 4d30b31c55
2 changed files with 157 additions and 51 deletions

View File

@ -0,0 +1,14 @@
class SecioException(Exception):
pass
class PeerMismatchException(SecioException):
pass
class InvalidSignatureOnExchange(SecioException):
pass
class HandshakeFailed(SecioException):
pass