* RS384 algorithm. */
| 134 | * RS384 algorithm. |
| 135 | */ |
| 136 | struct RS384 |
| 137 | { |
| 138 | static const int type = EVP_PKEY_RSA; |
| 139 | |
| 140 | const EVP_MD* operator()() noexcept |
| 141 | { |
| 142 | return EVP_sha384(); |
| 143 | } |
| 144 | }; |
| 145 | |
| 146 | /** |
| 147 | * RS512 algorithm. |
nothing calls this directly
no outgoing calls
no test coverage detected