| 19 | /// This key can be re-used so make sure you only initialize it once if you can for better performance. |
| 20 | #[derive(Clone, Zeroize, ZeroizeOnDrop)] |
| 21 | pub struct EncodingKey { |
| 22 | #[zeroize(skip)] |
| 23 | family: AlgorithmFamily, |
| 24 | content: Vec<u8>, |
| 25 | } |
| 26 | |
| 27 | impl EncodingKey { |
| 28 | /// The algorithm family this key is for. |
nothing calls this directly
no outgoing calls
no test coverage detected