mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-26 19:30:21 +00:00
Fix MaxHeaderLength and MaxMessageLength (GH #724)
This commit is contained in:
parent
ebb9593a4b
commit
33eac51e92
@ -62,9 +62,9 @@ public:
|
||||
unsigned int DigestSize() const
|
||||
{return 16;}
|
||||
lword MaxHeaderLength() const
|
||||
{return LWORD_MAX;}
|
||||
{return W64LIT(18446744073709551615);} // 2^64-1 bytes
|
||||
lword MaxMessageLength() const
|
||||
{return LWORD_MAX;}
|
||||
{return W64LIT(274877906880);} // 2^38-1 blocks
|
||||
lword MaxFooterLength() const
|
||||
{return 0;}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user