5
我試圖使用OpenSSL庫將表示大整數的字符串p_str
轉換爲BIGNUM
p
。將一個以字符串形式給出的大數字轉換爲OpenSSL BIGNUM
#include <stdio.h>
#include <openssl/bn.h>
int main()
{
/* I shortened the integer */
unsigned char *p_str = "82019154470699086128524248488673846867876336512717";
BIGNUM *p = BN_bin2bn(p_str, sizeof(p_str), NULL);
BN_print_fp(stdout, p);
puts("");
BN_free(p);
return 0;
}
與它編譯:
gcc -Wall -Wextra -g -o convert convert.c -lcrypto
但是,當我執行它,我得到以下結果:
3832303139313534