标签: c# cryptojs
新的Javascript Cryptography API具有以下功能:
window.crypto.subtle.sign window.crypto.subtle.importKey
请问他们在C#中的等价物是什么
感谢。
编辑: 我要求在这里实现的JavaScript加密函数的c#等价物:http://www.w3.org/TR/WebCryptoAPI/
答案 0 :(得分:4)
您可以找到位于以下命名空间中的equlivalents(大多数)。
using System.Security.Cryptography;
以下是可用算法的更详细列表:MSDN Reference