Expand description
SSLv2 protocol support.
Implements parsing and building for SSLv2 record and handshake messages.
SSLv2 uses a different record format from TLS:
2-byte header (MSB set): (length & 0x7FFF), no padding
3-byte header (MSB clear): length:15, padding_len:1
Re-exports§
pub use handshake::Sslv2ClientHello;pub use handshake::Sslv2ClientMasterKey;pub use handshake::Sslv2MessageType;pub use handshake::Sslv2ServerHello;pub use record::Sslv2Record;pub use record::parse_sslv2_record;
Modules§
Constants§
- SSLV2_
VERSION SSLv2version constant.
Functions§
- is_
sslv2 - Check if data starts with an
SSLv2record header.