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: bool
Whether the peer appears to be getting close to encrypting too many messages with this key.
plaintext: PlainMessage
The decrypted message.