有没有免费的& SQL Server 2000 的 RSA-2048 开源实现?
我正在尝试对 SQL Server 2000 进行一些加密,并且我知道只有 SQL 2005+ 具有用于本机执行此操作的内置功能。
您知道我可以免费使用 RSA-2048 加密技术的任何开源实现吗?
I'm trying to do some cryptography for SQL Server 2000, and I know that only SQL 2005+ comes with built-in functionality for doing this natively.
Do you know any open source implementation that I can use for free of RSA-2048 cryptography?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信您需要扩展存储过程来做这个。您可以自己在众多 C 或 C++ 开源实现之一或 Windows CryptoAPI 上构建它们。
或者,快速 Google 搜索会显示 XP_CRYPT 这是此方法的实现(但如果您想要,它不是免费的)具有任何安全密钥长度的 RSA)。
I believe you need Extended Stored Procedures to do this. You can make them yourself building on one of the many C or C++ open-source implementations or the Windows CryptoAPI.
Alternatively a quick Google search reveals XP_CRYPT which is an implementation of this (but it is not free if you want RSA with any secure keylength).
检查椭圆曲线加密下的开源库
您应该能够使用以下开发人员指南
Check open source libraries under Elliptic curve cryptography
Which should you should be able to use following developer guide