在C ++中,我试图使用OpenSSL库将表示一个大整数的int数组转换为BIGNUM。
使用包含大数字的十六进制编码的字符串是可以的,但是我找不到如何使用数组来执行此操作。
#include <openssl/bn.h>
int main()
{
uint32_t hash[4] = { 0x3506fa7d, 0x6bb2dbe9, 0x9041d8e5, 0x6ea31f6b };
const char p_hash[] = "3506fa7d6bb2dbe99041d8e56ea31f6b";
BIGNUM *bn_result1 = BN_new();
BN_hex2bn(&bn_result1, p_hash);
std::cout << "Big number as Dec: " << BN_bn2dec(bn_result1) << std::endl;
std::cout << "Big number as Hex: " << BN_bn2hex(bn_result1) << std::endl;
// How to convert hash[4] to BIGNUM bn_result2?
}
答案 0 :(得分:1)
可能使用htobe32
和BN_bin2bn
的解决方案:
for(i=0; i<4; i++) {
hash[i] = htobe32(hash[i]); /* BN_bin2bn needs big endian data */
}
BN_bin2bn((const unsigned char *)hash, (4*4), &bn_result2);
如果您确定主机字节顺序为大字节序,则可以省略转换,但是这样您将使用可移植性。