class Acme::Client::JWK::HMAC

def jwa_alg

Returns a String.

The name of the algorithm as needed for the `alg` member of a JWS object.
def jwa_alg
  # https://tools.ietf.org/html/rfc7518#section-3.1
  # HMAC using SHA-256
  'HS256'
end