diff options
Diffstat (limited to 'src/tests/test_pubkey.h')
-rw-r--r-- | src/tests/test_pubkey.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/tests/test_pubkey.h b/src/tests/test_pubkey.h new file mode 100644 index 000000000..729e703cd --- /dev/null +++ b/src/tests/test_pubkey.h @@ -0,0 +1,22 @@ + +#include <botan/pubkey.h> + +using namespace Botan; + +size_t validate_encryption(Botan::PK_Encryptor& e, Botan::PK_Decryptor& d, + const std::string& algo, const std::string& input, + const std::string& random, const std::string& exp); + +size_t validate_signature(PK_Verifier& v, PK_Signer& s, const std::string& algo, + const std::string& input, + RandomNumberGenerator& rng, + const std::string& exp); + +size_t validate_signature(PK_Verifier& v, PK_Signer& s, const std::string& algo, + const std::string& input, + const std::string& random, + const std::string& exp); + +size_t validate_kas(PK_Key_Agreement& kas, const std::string& algo, + const std::vector<byte>& pubkey, const std::string& output, + size_t keylen); |