gpt4 book ai didi

c# - 在 C# 中使用 JSONWebKey 或 JSONWebKeySet 解密 JSONWebToken

转载 作者:行者123 更新时间:2023-12-03 08:20:05 25 4
gpt4 key购买 nike

我在互联网上尝试了各种解决方案,但所有解决方案都以不同的方式出现问题。我写这封信是希望 StackOverflow 上熟悉类似工作流程的人或来自 Microsoft.IdentityModel.JsonWebTokens 团队的人能够介入提供帮助。

我想要做的是解密由 JSONWebKey (JWK) 加密的 OAuth 访问 token ,以便我可以读取声明数据。现在我陷入了解密步骤。我在 OS X 上使用 C# 和 Visual Studio for Mac。我尝试过的方法包括使用旧的 JWT 库并尝试通过迂回方式创建各种 RSA 对象。但是,我想做的是如下所示:

using System;
using System.Linq;
using Microsoft.IdentityModel.JsonWebTokens;
using Microsoft.IdentityModel.Tokens;
using System.Security.Cryptography;
using Microsoft.AspNetCore.WebUtilities;

namespace jwtdecoder {
class Program {
static void Main(string[] args) {

/* Exact string of a token retrieved from the IDP/OAuth server. */
String token = "BASE64EncodedTokenGoesHere";

/* Trust me that we have a valid JWKS string here that has all the properties mentioned in the RSA params below
* and uses RSA OAEP 256 */
String jwks = "JWKSSTRINGGOESHERE";


/* Get our basic objects from the Strings above. */
JsonWebKeySet exampleJWKS = new JsonWebKeySet(jwks);
JsonWebKey exampleJWK = exampleJWKS.Keys.First();
JsonWebToken exampleJWT = new JsonWebToken(token);

/* Create RSA from Elements in JWK */
RSAParameters rsap = new RSAParameters{
Modulus = WebEncoders.Base64UrlDecode(exampleJWK.N),
Exponent = WebEncoders.Base64UrlDecode(exampleJWK.E),
D = WebEncoders.Base64UrlDecode(exampleJWK.D),
P = WebEncoders.Base64UrlDecode(exampleJWK.P),
Q = WebEncoders.Base64UrlDecode(exampleJWK.Q),
DP = WebEncoders.Base64UrlDecode(exampleJWK.DP),
DQ = WebEncoders.Base64UrlDecode(exampleJWK.DQ),
InverseQ = WebEncoders.Base64UrlDecode(exampleJWK.QI)
};
RSA rsa = RSA.Create();
rsa.ImportParameters(rsap);
RsaSecurityKey rsakey = new RsaSecurityKey(rsa);

/* Create a JSON Token Handler and Try Decrypting the Token */
JsonWebTokenHandler exampleHandler = new JsonWebTokenHandler();
TokenValidationParameters validationParameters = new TokenValidationParameters {
ValidateAudience = false,
ValidateIssuer = false,
RequireSignedTokens = false, /* Have also tried with this set to True */
TokenDecryptionKey = rsakey
};

String clearToken = exampleHandler.DecryptToken(exampleJWT, validationParameters);
/* The line above results in an error
* "IDX10609: Decryption failed. No Keys tried: token: 'System.String'."
*/
}
}
}

我的 IDP/OAuth 服务器是 Micro Focus/NetIQ Access Manager,使用我在其外部生成的 JSON Web key (并作为新的资源服务器导入)。不过,我认为细节与问题没有太大关系。当我在 C# 中创建 JSONWebKey 和 JSONWebToken 对象时,我看到了我期望看到的属性,并且没有出现任何异常。我还可以使用非 C# 工具解码(而不是解密) token 字符串,并查看我期望的 header 属性等。

具体来说,对于header上面代码中的exampleJWT对象如下:

{{ "alg": "RSA-OAEP-256", "enc": "A128CBC-HS256", "typ": "JWT", "cty": "JWT", "zip": "DEF", "kid": "5BbVY7F77gz9LWE4tUjXwNFt9qhINvWBR7Pkm1ZJlEA" }}

exampleJWT 对象还具有以下属性,其值看起来已编码或已加密:EncodedHeader、EncodedToken、EncryptedKey、CipherText 和 AuthenticationTag目前对象中没有明文 claim 数据或日期数据。

我的想法是,我没有正确设置 Decrypt 方法的代码来正确应用 JSONWebToken RSA 信息,以便将 token 转换为明文。然而,正如我所说,我使用其他 C# 类和方法尝试了许多不同的方法,但没有一个更成功。我很想知道我对这个过程的根本误解是什么。预先感谢您。

回答下面 Michal 的问题:四个点(当使用 base-64 编码时),所以有五个部分。

最佳答案

大约三周前我也遇到了这个问题。

正如您已经发现的,IdentityModel 目前不支持 RSA-OAEP-256。在实现之前使用 RSA_15 对我来说不是一个选择,但 .NET 支持 RSA-OAEP-256,因此我利用 CryptoProviderFactory 将其委托(delegate)给我自己的实现(这基本上是对 Decrypt 的调用) .

首先,您需要实现一个具有 ICryptoProvider 接口(interface)的类:

public class CryptoProvider : ICryptoProvider
{
public bool IsSupportedAlgorithm(string algorithm, params object[] args)
{
if (algorithm == "RSA-OAEP-256")
return true;

return false;
}

public object Create(string algorithm, params object[] args)
{
if (algorithm.Equals("RSA-OAEP-256"))
return new RsaOaepKeyWrapProvider(args[0] as SecurityKey, algorithm, (bool)args[1]);

return null;
}

public void Release(object cryptoInstance)
{
throw new NotImplementedException();
}
}

然后您需要从 KeyWrapProvider 派生:

public class RsaOaepKeyWrapProvider : KeyWrapProvider
{
public RsaOaepKeyWrapProvider(SecurityKey key, string algorithm, bool willUnwrap)
{
Key = key;
Algorithm = algorithm;
}

protected override void Dispose(bool disposing)
{
}

public override byte[] UnwrapKey(byte[] keyBytes)
{
//Get your RSA Object
var rsa = CryptoConfig.GetRSA();
return rsa.Decrypt(keyBytes, RSAEncryptionPadding.OaepSHA256);
}

//We don't need Key Wrapping
public override byte[] WrapKey(byte[] keyBytes)
{
throw new NotImplementedException();
}

public override string Algorithm { get; }
public override string Context { get; set; }
public override SecurityKey Key { get; }
}

最后你需要设置rsakey.CryptoProviderFactory到您的 CryptoProvider 的实例类。

除了并非所有 KeyWrapProvider 都受支持之外,IdentityModel.Tokens 还缺乏对 AES-GCM 身份验证加密的支持。通过对上述实现进行一些调整,您也可以支持这一点。当这最终在库中实现时,您只需删除附加代码即可,无需更改其他实现。

关于c# - 在 C# 中使用 JSONWebKey 或 JSONWebKeySet 解密 JSONWebToken,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68106472/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com