Struct rustls::internal::record_layer::Decrypted
source · pub struct Decrypted {
pub want_close_before_decrypt: bool,
pub plaintext: PlainMessage,
}Expand description
Result of decryption.
Fields§
§want_close_before_decrypt: boolWhether the peer appears to be getting close to encrypting too many messages with this key.
plaintext: PlainMessageThe decrypted message.