1
0
Fork 0
forked from len0rd/rockbox

nwztools/scsitool: fix compile issue with some version of cryptopp

Change-Id: Ia20f0142a2b08bddd61a0056f49c8e4c9ed49caa
This commit is contained in:
Amaury Pouly 2020-05-17 20:19:16 +02:00
parent ae6a49638b
commit e3532b1667

View file

@ -28,5 +28,5 @@ using namespace CryptoPP::Weak;
void MD5_CalculateDigest(void *digest, const void *input, size_t length)
{
MD5().CalculateDigest((CryptoPP::byte *)digest, (const CryptoPP::byte *)input, length);
MD5().CalculateDigest((byte *)digest, (const byte *)input, length);
}