(data: &[u8])
| 339 | } |
| 340 | |
| 341 | fn base64_url_encode(data: &[u8]) -> String { |
| 342 | use base64::Engine; |
| 343 | base64::engine::general_purpose::URL_SAFE_NO_PAD.encode(data) |
| 344 | } |
| 345 | |
| 346 | /// Bit length used for RSA keys generated in this test module. |
| 347 | /// Production validates whatever the operator configures; the |