Hello, I have a CRL directory that works fine with pem formatted CRLs. I'm using SSL_CTX_load_verify_locations(...), to set up the directory with pem encoded crls. I need to get a directory to work with der encoded CRLs. After digging through some source I thought I might be able to do something like:
X509_LOOKUP *lookup = X509_STORE_add_lookup(x509_store, X509_LOOKUP_hash_dir()); X509_LOOKUP_add_dir(lookup,path,X509_FILETYPE_DER); then I realized that there is no X509_FILETYPE_DER. Is a raw DER CRL directory possible? If so, can somebody point me in the right direction. >From all the code I am looking at, it seems like CRLs always need to be in PEM format.