mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-25 05:25:55 +00:00
Use C++-style cast
This commit is contained in:
@@ -155,7 +155,7 @@ uint256 Serializer::getSHA512Half(const std::vector<unsigned char>& data, int si
|
|||||||
char buf[64];
|
char buf[64];
|
||||||
if((size<0)||(size>data.size())) size=data.size();
|
if((size<0)||(size>data.size())) size=data.size();
|
||||||
SHA512(&(data.front()), size, (unsigned char *) buf);
|
SHA512(&(data.front()), size, (unsigned char *) buf);
|
||||||
return * (uint256 *) buf;
|
return * reinterpret_cast<uint256*>(&buf[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Serializer::checkSignature(int pubkeyOffset, int signatureOffset) const
|
bool Serializer::checkSignature(int pubkeyOffset, int signatureOffset) const
|
||||||
|
|||||||
Reference in New Issue
Block a user