作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们如何在 C# 中创建 AsymmetricSecurityKey。实际上,我们正在使用 AsymetricSecurityKey 创建签名凭证,这是我们的代码:
// Define const Key this should be private secret key stored in some safe place
string key = "401b09eab3c013d4ca54922bb802bec8fd5318192b0a75f201d8b3727429090fb337591abd3e44453b954555b7a0812e1081c39b740293f765eae731f5a65ed1";
// Create Security key using private key above:
// not that latest version of JWT using Microsoft namespace instead of System
var securityKey = new AsymmetricSecurityKey(Encoding.UTF8.GetBytes(key));
// Also note that securityKey length should be >256b
// so you have to make sure that your private key has a proper length
//
var credentials = new Microsoft.IdentityModel.Tokens.SigningCredentials
(securityKey, SecurityAlgorithms.HmacSha256Signature);
最佳答案
您可以使用以下方式生成公钥/私钥:
public void GenerateRsaCryptoServiceProviderKey()
{
var rsaProvider = new RSACryptoServiceProvider(512);
SecurityKey key = new RsaSecurityKey(rsaProvider);
}
你应该使用下面的RsaSha256
:
var credentials = new Microsoft.IdentityModel.Tokens.SigningCredentials
(key, SecurityAlgorithms.RsaSha256);
关于c# - 我们如何创建 AsymmetricSecurityKey?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48860690/
我们如何在 C# 中创建 AsymmetricSecurityKey。实际上,我们正在使用 AsymetricSecurityKey 创建签名凭证,这是我们的代码: // Define const K
我是一名优秀的程序员,十分优秀!