인디노트

PEM_write_bio_RSAPublicKey vs PEM_write_bio_RSA_PUBKEY 본문

인증기술/PKI 기술

PEM_write_bio_RSAPublicKey vs PEM_write_bio_RSA_PUBKEY

인디개발자 2022. 7. 17. 08:30
 int PEM_write_bio_RSAPublicKey(BIO *bp, RSA *x);
 int PEM_write_bio_RSA_PUBKEY(BIO *bp, RSA *x);

뭐가 다를까?

The RSAPublicKey functions process an RSA public key using an RSA structure. The public key is encoded using a PKCS#1 RSAPublicKey structure.

The RSA_PUBKEY functions also process an RSA public key using an RSA structure. However, the public key is encoded using a SubjectPublicKeyInfo structure and an error occurs if the public key is not RSA.

 

RSAPublicKey 함수는 RSA 구조를 사용하여 RSA 공개 키를 처리합니다. 공개 키는 PKCS#1 RSAPublicKey 구조를 사용하여 인코딩됩니다.

RSA_PUBKEY 함수는 RSA 구조를 사용하여 RSA 공개 키를 처리합니다. 단, 공개키는 SubjectPublicKeyInfo 구조를 이용하여 인코딩되며, 공개키가 RSA가 아닌 경우 오류가 발생한다.


결론적으로 PKCS#1 을 사용할 경우 RSAPublicKey 를 사용하면 됨

반응형
Comments