(bytes: &[u8])
| 92 | } |
| 93 | |
| 94 | fn b64(bytes: &[u8]) -> String { |
| 95 | base64::engine::general_purpose::URL_SAFE_NO_PAD.encode(bytes) |
| 96 | } |
| 97 | |
| 98 | /// Forge an unsigned JWT — header + payload + garbage sig. We are testing |
| 99 | /// the routing / issuer-validation path that runs BEFORE signature verify; |