(&self, f: &mut Formatter<'_>)
| 119 | |
| 120 | impl Debug for EncodingKey { |
| 121 | fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { |
| 122 | f.debug_struct("EncodingKey") |
| 123 | .field("family", &self.family) |
| 124 | .field("content", &"[redacted]") |
| 125 | .finish() |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | /// Encode the header and claims given and sign the payload using the algorithm from the header and the key. |
nothing calls this directly
no outgoing calls
no test coverage detected