How to print RSA* as string in C++?

前端 未结 2 458
情深已故
情深已故 2021-01-13 17:43

How to properly print RSA* as string in C++?

I am using OpenSSL. It doesn\'t seem to have a .c_str() method, right?

2条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-13 18:33

    RSA_print_fp(stdout, x, 0);
    

    http://linux.die.net/man/3/rsa_print_fp

提交回复
热议问题