gmp 整数输入字符串的最大长度?

发布于 2024-11-10 00:53:36 字数 220 浏览 0 评论 0原文

我正在尝试实现一个加密功能。要求我的字符串输入长度可能为 10000 字节。因此,为了与 gmp 变量 (mpz_t) 一起使用,我必须将此字符串输入转换为 mpz_t 变量。

gmp (BigInteger) 库手册对此只字未提: 可以转换为 mpz_t 变量的字符串的最大长度是多少?

mpz_set_str() 函数是我遇到的唯一一个函数。如果有人能对这个问题有所了解,我将不胜感激。

I am trying to implement a cryptographic function. It is requirement that my string input might be of 10000 bytes long. So in order to use along with the gmp variables (mpz_t) i have to convert this string input into a mpz_t variable.

The gmp (BigInteger) library manual says nothing about this:
What is the maximum length of a string that can be converted into an mpz_t variable?

mpz_set_str() function was the only one I came across. Would appreciate if some can throw some light into this issue.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清欢 2024-11-17 00:53:36

如果库没有说什么,则数组的长度可能有两种限制。一是数组中元素的个数不能超过size_t所能表示的最大整数。另一个限制可能是由硬件施加的。

If there is nothing said by the library, there are two possible limits to the length of the array. One is the number of elements in the array must not exceed the maximum integer that can be represented by size_t. The other limit could be imposed by the hardware.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文