1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 23:34:37 +01:00

Replace our own integer types with standard ones

This commit is contained in:
Michael Steenbeek
2018-06-20 17:28:51 +02:00
parent ec3a1e575e
commit 1b08fb4e69
618 changed files with 33440 additions and 33449 deletions

View File

@@ -188,7 +188,7 @@ std::string NetworkKey::PublicKeyHash()
return nullptr;
}
bool NetworkKey::Sign(const uint8 * md, const size_t len, char ** signature, size_t * out_size)
bool NetworkKey::Sign(const uint8_t * md, const size_t len, char ** signature, size_t * out_size)
{
try
{
@@ -208,7 +208,7 @@ bool NetworkKey::Sign(const uint8 * md, const size_t len, char ** signature, siz
}
}
bool NetworkKey::Verify(const uint8 * md, const size_t len, const char * sig, const size_t siglen)
bool NetworkKey::Verify(const uint8_t * md, const size_t len, const char * sig, const size_t siglen)
{
try
{