2017-02-13 17 views
2

C++의 OpenSLL 함수를 사용하여 DER 형식으로 변환하려는 PEM 형식의 인증서가 있습니다.C++에서 PEM을 DER로 변환

어떻게하면됩니까?

감사합니다.

+0

있는 OpenSSL에서는 X509 -outform 데르 -에서 certificate.pem -out certificate.der https://www.sslshopper.com을 /ssl-converter.html – user1438832

+0

어떻게해야합니까 C++에서 openssl 함수를 사용합니까? – itayb

+0

[.Net에서 OpenSSL RSA 키 사용] (http://stackoverflow.com/q/30475758/608639)을 참조하십시오. 그것은 당신에게 리소스를 관리하기위한'unique_ptr'을 가진 C++ 트릭을 보여줍니다. – jww

답변

1

당신은 그것을 좋아 할 수 -

#include <stdio.h> 
#include <openssl/x509.h> 
#include <openssl/pem.h> 
#include <openssl/err.h> 

void convert(char* cert_filestr,char* certificateFile) 
{ 
    X509* x509 = NULL; 
    FILE* fd = NULL,*fl = NULL; 

    fl = fopen(cert_filestr,"rb"); 
    if(fl) 
    { 
     fd = fopen(certificateFile,"w+"); 
     if(fd) 
     { 
      x509 = PEM_read_X509(fl,&x509,NULL,NULL); 
      if(x509) 
      { 
       i2d_X509_fp(fd, x509); 
      } 
      else 
      { 
       printf("failed to parse to X509 from fl"); 
      } 
      fclose(fd); 
     } 
     else 
     { 
      printf("can't open fd"); 
     } 
     fclose(fl); 
    } 
    else 
    { 
     printf("can't open f"); 
    } 
} 


int main() 
{ 
    convert("abc.pem","axc.der"); 
    return 0; 
} 
+0

감사합니다. 단 한 번만 더 질문합니다. 문자열로 가져오고 파일로 가져 오지 않으면 어떻게 할 수 있습니까? 대단히 감사합니다 – itayb

-1

을이 시도 -

void convert(const unsigned char * pem_string_cert,char* certificateFile) 
{ 
    X509* x509 = NULL; 
    FILE* fd = NULL; 

    BIO *bio; 

    bio = BIO_new(BIO_s_mem()); 
    BIO_puts(bio, pem_string_cert); 
    x509 = PEM_read_bio_X509(bio, NULL, NULL, NULL); 

    fd = fopen(certificateFile,"w+"); 
    if(fd) 
    { 
      i2d_X509_fp(fd, x509); 
    } 
    else 
    { 
     printf("can't open fd"); 
    } 
    fclose(fd); 
} 
+0

고마워요. – itayb