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

Class RS256

include/jwt/algorithm.hpp:123–131  ·  view source on GitHub ↗

* RS256 algorithm. */

Source from the content-addressed store, hash-verified

121 * RS256 algorithm.
122 */
123struct RS256
124{
125 static const int type = EVP_PKEY_RSA;
126
127 const EVP_MD* operator()() noexcept
128 {
129 return EVP_sha256();
130 }
131};
132
133/**
134 * RS384 algorithm.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected