feat: Add signature validation

This commit is contained in:
2022-08-02 15:40:26 +02:00
parent fc43655956
commit 4211775c90
4 changed files with 57 additions and 4 deletions

4
lib/src/errors.dart Normal file
View File

@@ -0,0 +1,4 @@
class InvalidSignatureException implements Exception {
@override
String errMsg() => 'The signature of the SPK does not match the provided signature';
}