SSL3_RT_MAX_ENCRYPTED_OVERHEAD

The standards give a maximum encryption overhead of 1024 bytes. In practice the value is lower than this. The overhead is the maximum number of padding bytes (256) plus the mac size.

extern (C) nothrow @nogc
enum SSL3_RT_MAX_ENCRYPTED_OVERHEAD = 256 + .SSL3_RT_MAX_MD_SIZE;

Meta