source: trunk/src/allmydata/crypto/error.py

Last change on this file was 1cfe843d, checked in by Alexandre Detiste <alexandre.detiste@…>, at 2024-02-22T23:40:25Z

more python2 removal

  • Property mode set to 100644
File size: 263 bytes
Line 
1"""
2Exceptions raise by allmydata.crypto.* modules
3
4Ported to Python 3.
5"""
6
7class BadSignature(Exception):
8    """
9    An alleged signature did not match
10    """
11
12
13class BadPrefixError(Exception):
14    """
15    A key did not start with the required prefix
16    """
Note: See TracBrowser for help on using the repository browser.