BigInt 转换(gmp Bigint 到 botan bigint)
我正在使用 gmp 执行复杂的操作。我想使用 Botan 来执行加密功能。问题是它们都有自己的 Bigint 函数。因此,将 gmp 函数中使用的 bigint 值提供给 Botan 函数会产生问题。
有人可以帮忙吗?
I am using gmp to perform complex operation. I want to use Botan to perform cryptography functions. Problem is Both of them have their own Bigint function. So its creating problem on supplying bigint value used in gmp function to Botan function.
Can anyone help in this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
mpz_export
导出 GMP 整数和BigInt(const byte[ ], size_t)
构造函数来导入它。Use
mpz_export
to export the GMP integer and theBigInt(const byte[], size_t)
constructor to import it.