/* * Utils for calling BearSSL * (C) 2015,2016 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_INTERNAL_BEARSSL_H__ #define BOTAN_INTERNAL_BEARSSL_H__ #include #include #include #include #include namespace Botan { class HashFunction; class BearSSL_Error : public Exception { public: BearSSL_Error(const std::string& what) : Exception(what + " failed") {} }; /* Hash */ std::unique_ptr make_bearssl_hash(const std::string& name); /* ECDSA */ #if defined(BOTAN_HAS_ECDSA) class ECDSA_PublicKey; class ECDSA_PrivateKey; std::unique_ptr make_bearssl_ecdsa_ver_op(const ECDSA_PublicKey& key, const std::string& params); std::unique_ptr make_bearssl_ecdsa_sig_op(const ECDSA_PrivateKey& key, const std::string& params); #endif } #endif