| 8 | } // namespace |
| 9 | |
| 10 | TEST(HelperTest, Cert2Pubkey) { |
| 11 | auto key = jwt::helper::extract_pubkey_from_cert(google_cert); |
| 12 | ASSERT_EQ(google_public_key, key); |
| 13 | } |
| 14 | |
| 15 | TEST(HelperTest, Base64DER2PemCert) { |
| 16 | auto cert_pem = jwt::helper::convert_base64_der_to_pem(google_cert_base64_der); |
nothing calls this directly
no test coverage detected