Shane Miller
Results
1
comments of
Shane Miller
This worked great, thanks! The part that was needed: ``` var x5c = JsonSerializer.Deserialize(token.Header.X5c)!; if (x5c.Length == 0) return; ``` ``` var signingKeys = x5c .Select(Convert.FromBase64String) .Select(x => new X509Certificate2(x))...