libbigint -- 大整数库
支持任意精度计算并易于与其他项目集成的整数库。
特征
任意精度算术运算
按位运算
优化倍数、除法和 pow-mod 等。
质数相关操作。
快速斐波那契数组操作
硬件要求
该库专为在 32 位 CPU 或更高版本上工作而设计。
软件要求
该库的源代码完全用 C99 编写,应该适用于 32 位操作系统上的大多数现代 C 编译器。
建造
生成 Makefile 需要 Python2。 (暂不支持 Python3)
使用以下命令生成 Makefile:
$ ./configure
以及以下命令来构建项目:
$ make # for building the test program
$ make static # for building the static library
$ make shared # for building the sha
2021-07-03 14:05:58
38KB
C
1