CspParameter 检查 keycontainername 是否已存在
我已使用 RSACryptoServiceProvider 成功签署了我的 XML 文件。我的密钥存储在机器密钥存储中。
现在,我想检查 machinekeystore 是否已包含与 keycontainername 相关的密钥,或者 rsacryptoserviceprovider 是否需要创建一个新密钥。
我怎样才能做到这一点?
感谢您的帮助! 卡米尔。
I've successfully signed my XML files using the RSACryptoServiceProvider. My key is stored in the Machine Key Store.
Now, I would like to check if the machinekeystore already contains the key that is related with the keycontainername or if the rsacryptoserviceprovider will need to create a new one.
How may I accomplish this?
Appreciate for your help!
Camille.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据密钥存储和检索,当 Windows 创建计算机密钥存储时,它会在
Documents and Settings\All Users\Application Data\Microsoft\Crypto\RSA\Machine Keys
目录中创建一个文件。您可以循环遍历文件并搜索该文件。请参阅此处的示例TryKeyContainerPermissionCheck
了解找到该文件的方法。According to Key Storage and Retrieval, when Windows creates a Machine key store, it creates a file in the
Documents and Settings\All Users\Application Data\Microsoft\Crypto\RSA\Machine Keys
directory. You could loop through the files and search for the file. See the example here calledTryKeyContainerPermissionCheck
for a way you might find the file.