class Acme::Client::JWK::RSA

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
  # RSASSA-PKCS1-v1_5 using SHA-256
  'RS256'
end