* ES384 algorithm. */
| 173 | * ES384 algorithm. |
| 174 | */ |
| 175 | struct ES384 |
| 176 | { |
| 177 | static const int type = EVP_PKEY_EC; |
| 178 | |
| 179 | const EVP_MD* operator()() noexcept |
| 180 | { |
| 181 | return EVP_sha384(); |
| 182 | } |
| 183 | }; |
| 184 | |
| 185 | /** |
| 186 | * ES512 algorithm. |
nothing calls this directly
no outgoing calls
no test coverage detected