1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 04:04:16 +00:00

forgot to commit Base.cpp changes

This commit is contained in:
Jeff Becker 2016-02-05 08:46:08 -05:00
parent d0ea59c568
commit 21090eaa39
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B

View File

@ -327,7 +327,14 @@ namespace data
LogPrint (eLogError, "Compression error ", err); LogPrint (eLogError, "Compression error ", err);
return 0; return 0;
} }
} }
// from https://stackoverflow.com/questions/1533113/calculate-the-size-to-a-base-64-encoded-message
size_t Base64EncodingBufferSize(const size_t input_size) {
const size_t code_size = ((input_size * 4) / 3);
const size_t padding_size = (input_size % 3) ? (3 - (input_size % 3)) : 0;
return code_size + padding_size;
}
} }
} }