* RS256 algorithm. */
| 121 | * RS256 algorithm. |
| 122 | */ |
| 123 | struct RS256 |
| 124 | { |
| 125 | static const int type = EVP_PKEY_RSA; |
| 126 | |
| 127 | const EVP_MD* operator()() noexcept |
| 128 | { |
| 129 | return EVP_sha256(); |
| 130 | } |
| 131 | }; |
| 132 | |
| 133 | /** |
| 134 | * RS384 algorithm. |
nothing calls this directly
no outgoing calls
no test coverage detected