| 75 | /// This key can be re-used so make sure you only initialize it once if you can for better performance. |
| 76 | #[derive(Clone, Debug, ZeroizeOnDrop, Zeroize)] |
| 77 | pub struct DecodingKey { |
| 78 | #[zeroize(skip)] |
| 79 | family: AlgorithmFamily, |
| 80 | kind: DecodingKeyKind, |
| 81 | } |
| 82 | |
| 83 | impl DecodingKey { |
| 84 | /// The algorithm family this key is for. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…