我们如何为Windows应用商店应用程序散列对称加密密钥?

时间:2015-12-09 11:57:11

标签: c# windows-phone-8.1 cryptography windows-store-apps

Windows.Security Library的散列技术如下。

HashAlgorithmProvider Hash_Sha256 = HashAlgorithmProvider.OpenAlgorithm(HashAlgorithmNames.Sha256);
IBuffer HashedDerivedKey = Hash_Sha256.HashData(DerivedPrimaryKey);

是否有可能直接散列对称加密密钥。

也就是说,直接散列'key',如下所述。

CryptographicKey key = aesCbcPkcs7.CreateSymmetricKey(CryptographicBuffer.GenerateRandom(32));

0 个答案:

没有答案