* HS256 algorithm. */
| 77 | * HS256 algorithm. |
| 78 | */ |
| 79 | struct HS256 |
| 80 | { |
| 81 | const EVP_MD* operator()() noexcept |
| 82 | { |
| 83 | return EVP_sha256(); |
| 84 | } |
| 85 | }; |
| 86 | |
| 87 | /** |
| 88 | * HS384 algorithm. |
nothing calls this directly
no outgoing calls
no test coverage detected