- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在互联网上尝试了各种解决方案,但所有解决方案都以不同的方式出现问题。我写这封信是希望 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/
我尝试生成一个公钥/私钥对,将其用于 jose4j 的 JWT 数字签名。我用Elliptic Curve Digital Signature Algorithm 我的问题是我不知道如何获取代表 ed
我在互联网上尝试了各种解决方案,但所有解决方案都以不同的方式出现问题。我写这封信是希望 StackOverflow 上熟悉类似工作流程的人或来自 Microsoft.IdentityModel.Jso
我有一个 python 脚本,可以从 Azure Key Vault 检索 RSA 私钥。尝试序列化键值会给出: ValueError: Could not deserialize key data.
我是一名优秀的程序员,十分优秀!