JwkUtilities.ComputeThumbprintRsa method

Computes the RFC 7638 JWK thumbprint for an RSA public key given its Base64Url-encoded parameters.

public static string ComputeThumbprintRsa(string nBase64Url, string eBase64Url)
parameter description
nBase64Url The Base64Url-encoded RSA modulus (n).
eBase64Url The Base64Url-encoded RSA public exponent (e).

Return Value

The Base64Url-encoded SHA-256 hash of the canonical JWK representation.

See Also