gpt4 book ai didi

c - 使用 openssl 在 stdout RSA 公钥上打印

转载 作者:行者123 更新时间:2023-11-30 20:16:20 26 4
gpt4 key购买 nike

使用 i2d_RSAPublicKey 提取后,如何打印存储在 const unsigned char * 中的公钥?

最佳答案

你的问题相当广泛。但是,假设公钥是一个unsigned char数组,您需要将每个字符(每个字节)转换为可读的内容,例如十六进制或base-64编码。

像以十六进制打印整个 key 这样简单的方法可能会起作用:

for (int i = 0;  i < pubkey_len;  i++)
printf("%02X", pubkey[i]);

关于c - 使用 openssl 在 stdout RSA 公钥上打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12096825/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com