我正在使用Thinktecture STS并想使用SHA256而不是SHA1签署已发行的令牌? 我尝试使用以下方法将算法添加到应用程序中:
CryptoConfig.AddAlgorithm(
typeof(RSAPKCS1SHA256SignatureDescription),
"http://www.w3.org/2001/04/xmldsig-more#rsa-sha256");
但它开始给出错误:
指定的算法无效
知道我使用的证书与SHA256兼容。 有什么想法吗?