傻瓜式加密 API
有人可以给我指点一些书籍或在线资源来帮助我了解 windows cryptoapi 包吗?我确实找到了 Richard Bondi 写的“Cryptography for Visual Basic”。我对针对 C++ 或一般包的东西更感兴趣。 MDSN 太强大了!
Can some one point me to some books or online resources to help learn about the windows cryptoapi package? I did find "Cryptography for Visual Basic" by Richard Bondi. I'd be more interested in something aimed at C++ or the package in general. The MDSN is overwhelming!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个简单的教程,可以为您指明正确的方向。我希望它有帮助。
http://www.codeproject.com/KB/security/EncryptionCryptoAPI.aspx
Here is a simple tutorial that could point you in the right direction. I hope it helps.
http://www.codeproject.com/KB/security/EncryptionCryptoAPI.aspx
MSDN 可能让人不知所措,但也有一些亮点。此页面将为您提供一些背景信息:
http://msdn.microsoft.com/en-us/library/ms867086.aspx
无论如何,这实际上取决于您打算做什么。如果您只是使用 CryptoAPI 执行加密操作,那么您可以使用 MSDN,或者只需查看 Wincrypt.h(该标头中有很多信息)。
但是,如果您打算开发自己的 CSP(加密服务提供商),无论是否有硬件,您都需要更多信息。
如果您给我更多详细信息,我可以向您指出适当的位置(我以前就做过这两件事)。
问候
MSDN can be overwhelming however there are some pieces of light. This page would provide you some context:
http://msdn.microsoft.com/en-us/library/ms867086.aspx
In any case, it really depends on what are you planning to do. If you're just using CryptoAPI to perform cryptographic operations you're fine with MSDN or just have a look to Wincrypt.h (there's a lot of info inside that header).
However, if you're panning to develop you own CSP (cryptographic service provider) with or without hardware you would need further information.
If you give me more details I can point you to the appropriate place (I did both things time ago).
Regards