#![no_std]
pub mod tls;
pub use tls::{
ContentType, ContentTypeClass, ContentTypeCode, Dtls12Ciphertext, Dtls13Ciphertext,
Dtls13CiphertextConfig, Dtls13CiphertextHeader, Dtls13Sequence, DtlsPlaintext,
HEARTBEAT_EXTENSION_TYPE, LegacyRecordVersion, RecordError, TlsCiphertext, TlsPlaintext,
WirePolicy, encode_dtls13_ciphertext,
};
pub const TLS_DTLS_RECORD_FRAMING_IMPLEMENTED: bool = true;
#[cfg(test)]
mod tests {
#[test]
fn package_claims_only_record_framing() {
assert!(::core::hint::black_box(
super::TLS_DTLS_RECORD_FRAMING_IMPLEMENTED
));
}
}