module JWT::Algos::Rsa

def verify(to_verify)

def verify(to_verify)
  SecurityUtils.verify_rsa(to_verify.algorithm, to_verify.public_key, to_verify.signing_input, to_verify.signature)
end