Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 RSA 和大数字在 PHP 中玩耍。我需要能够使用 gmp_pow() 将数字乘以具有 ~256 到 ~512 字节的指数的幂。有没有人有什么建议?
您应该使用 gmp_powm() 自动将中间值减小到小于模值。这正是您想要的 RSA。
gmp_pow() 不接受大于 long 的指数,因为中间值将大于计算机中的可寻址内存。