将作为字符串给出的大数字转换为OpenSSL BIGNUM

时间:2015-05-06 13:00:48

标签: c openssl bignum

我正在尝试使用OpenSSL库将表示大整数的字符串p_str转换为BIGNUM p

#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

1 个答案:

答案 0 :(得分:10)

unsigned char *p_str = "82019154470699086128524248488673846867876336512717";

BIGNUM *p = BN_bin2bn(p_str, sizeof(p_str), NULL);

请改用int BN_dec2bn(BIGNUM **a, const char *str)

如果有BN_bin2bn数组(而不是以NULL结尾的ASCII字符串),则可以使用bytes

手册页位于BN_bin2bn(3)

正确的代码如下所示:

#include <stdio.h>
#include <openssl/bn.h>

int main ()
{
  static const
  char p_str[] = "82019154470699086128524248488673846867876336512717";

  BIGNUM *p = BN_new();
  BN_dec2bn(&p, p_str);

  char * number_str = BN_bn2hex(p);
  printf("%s\n", number_str);

  OPENSSL_free(number_str);
  BN_free(p);

  return 0;
}