1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-30 20:24:15 +00:00

allow longer families

This commit is contained in:
orignal 2020-05-01 14:30:56 -04:00
parent d48db501e0
commit c49e544781

View File

@ -113,9 +113,9 @@ namespace data
bool Families::VerifyFamily (const std::string& family, const IdentHash& ident,
const char * signature, const char * key)
{
uint8_t buf[50], signatureBuf[64];
uint8_t buf[100], signatureBuf[64];
size_t len = family.length (), signatureLen = strlen (signature);
if (len + 32 > 50)
if (len + 32 > 100)
{
LogPrint (eLogError, "Family: ", family, " is too long");
return false;