/* * X9.31 EMSA * (C) 1999-2007 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_EMSA_X931_H__ #define BOTAN_EMSA_X931_H__ #include #include namespace Botan { /** * EMSA from X9.31 (EMSA2 in IEEE 1363) * Useful for Rabin-Williams, also sometimes used with RSA in * odd protocols. */ class BOTAN_DLL EMSA_X931 final : public EMSA { public: /** * @param hash the hash object to use */ explicit EMSA_X931(HashFunction* hash); private: void update(const byte[], size_t) override; secure_vector raw_data() override; secure_vector encoding_of(const secure_vector&, size_t, RandomNumberGenerator& rng) override; bool verify(const secure_vector&, const secure_vector&, size_t) override; secure_vector m_empty_hash; std::unique_ptr m_hash; byte m_hash_id; }; } #endif