pub type GreaseOrCipher = GreaseOr<CipherSuite>;
Expand description
A type that can either hold a valid CipherSuite
or serve as a GREASE placeholder.
Aliased Type§
pub enum GreaseOrCipher {
Grease,
T(CipherSuite),
}
Variants§
Grease
A GREASE placeholder value, which will be generated randomly per session.
T(CipherSuite)
A valid value of the generic type T
.