9 #ifndef BOTAN_ECDSA_SIGNATURE_H__
10 #define BOTAN_ECDSA_SIGNATURE_H__
12 #include <botan/bigint.h>
13 #include <botan/der_enc.h>
14 #include <botan/ber_dec.h>
24 friend class ECDSA_Signature_Decoder;
44 return (get_r() == other.
get_r() && get_s() == other.
get_s());
bool operator!=(const OctetString &s1, const OctetString &s2)
const BigInt & get_s() const
const BigInt & get_r() const
bool operator==(const ECDSA_Signature &other) const
ECDSA_Signature(const BigInt &r, const BigInt &s)
ECDSA_Signature decode_concatenation(const MemoryRegion< byte > &concat)