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.
非常に大きな数を整数として C プログラムに格納する必要がありますが、unsigned long intそれでも小さすぎます。モジュロ演算子 (%) で機能する非常に大きなデータ型が必要です。
unsigned long int
これを行うことができるいくつかのライブラリがあります
暗号化の目的で必要な場合 (モジュロ演算の必要性からヒントを得た RSA など)、OpenSSL BN が最適です。