* ES512 algorithm. */
| 186 | * ES512 algorithm. |
| 187 | */ |
| 188 | struct ES512 |
| 189 | { |
| 190 | static const int type = EVP_PKEY_EC; |
| 191 | |
| 192 | const EVP_MD* operator()() noexcept |
| 193 | { |
| 194 | return EVP_sha512(); |
| 195 | } |
| 196 | }; |
| 197 | |
| 198 | } //END Namespace algo |
| 199 |
nothing calls this directly
no outgoing calls
no test coverage detected