aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/pk_pad/emsa_x931/emsa_x931.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/pk_pad/emsa_x931/emsa_x931.h')
-rw-r--r--src/lib/pk_pad/emsa_x931/emsa_x931.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/pk_pad/emsa_x931/emsa_x931.h b/src/lib/pk_pad/emsa_x931/emsa_x931.h
index fe5866002..ec48d01de 100644
--- a/src/lib/pk_pad/emsa_x931/emsa_x931.h
+++ b/src/lib/pk_pad/emsa_x931/emsa_x931.h
@@ -28,18 +28,18 @@ class BOTAN_DLL EMSA_X931 final : public EMSA
EMSA* clone() override { return new EMSA_X931(m_hash->clone()); }
private:
- void update(const byte[], size_t) override;
- secure_vector<byte> raw_data() override;
+ void update(const uint8_t[], size_t) override;
+ secure_vector<uint8_t> raw_data() override;
- secure_vector<byte> encoding_of(const secure_vector<byte>&, size_t,
+ secure_vector<uint8_t> encoding_of(const secure_vector<uint8_t>&, size_t,
RandomNumberGenerator& rng) override;
- bool verify(const secure_vector<byte>&, const secure_vector<byte>&,
+ bool verify(const secure_vector<uint8_t>&, const secure_vector<uint8_t>&,
size_t) override;
- secure_vector<byte> m_empty_hash;
+ secure_vector<uint8_t> m_empty_hash;
std::unique_ptr<HashFunction> m_hash;
- byte m_hash_id;
+ uint8_t m_hash_id;
};
}