MCPcopy Create free account
hub / github.com/arun11299/cpp-jwt / ES256

Class ES256

include/jwt/algorithm.hpp:162–170  ·  view source on GitHub ↗

* ES256 algorithm. */

Source from the content-addressed store, hash-verified

160 * ES256 algorithm.
161 */
162struct 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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected