* ES256 algorithm. */
| 160 | * ES256 algorithm. |
| 161 | */ |
| 162 | struct ES256 |
| 163 | { |
| 164 | static const int type = EVP_PKEY_EC; |
| 165 | |
| 166 | const EVP_MD* operator()() noexcept |
| 167 | { |
| 168 | return EVP_sha256(); |
| 169 | } |
| 170 | }; |
| 171 | |
| 172 | /** |
| 173 | * ES384 algorithm. |
nothing calls this directly
no outgoing calls
no test coverage detected