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