Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
i2d_RSAPublicKeyで抽出した後、const unsigned char *に格納されている公開鍵を印刷するにはどうすればよいですか?
あなたの質問はかなり広いです。ただし、公開鍵が の配列であると仮定すると、unsigned char各文字 (各バイト) を 16 進数や base-64 エンコーディングなどの読み取り可能なものに変換する必要があります。
unsigned char
キー全体を 16 進数で出力するのと同じくらい簡単なことでうまくいくかもしれません。
for (int i = 0; i < pubkey_len; i++) printf("%02X", pubkey[i]);