Added signature validation test

This commit is contained in:
Arun M 2017-12-26 09:21:24 +05:30
parent cb1847142e
commit 204092e588
6 changed files with 75 additions and 2 deletions

View file

@ -47,6 +47,8 @@ struct DecodeErrorCategory: std::error_category
{
case DecodeErrc::EmptyAlgoList:
return "empty algorithm list";
case DecodeErrc::SignatureFormatError:
return "signature format is incorrect";
case DecodeErrc::AlgHeaderMiss:
return "missing algorithm header";
case DecodeErrc::TypHeaderMiss: