Re: Help with certificatePolicies section

2020-04-06 Thread Libor Chocholaty
Hi, could you share commands that led to this error? It looks to me referenced non existent section in config file like as param "-extensions" option. Regards, Libor On 2020-04-06 19:43, Richard Simard wrote: > Hi! > > Anybody can help me whit this error? > > Error Loading extension

Re: Usage of Secure C (memcpy_s, strcpy_s etc) functions on OpenSSL

2019-11-26 Thread Libor Chocholaty
Hello, these _s functions are not so much safer than the standard ones. Using them makes just MSVC happy. Regards, Libor On 2019-11-26 12:07, Raja ashok wrote: > Hi All, > > We are using OpenSSL in our projects and we found some of the C standard > functions (like memcpy, strcpy) used in

Re: [openssl-users] How to parse DER encoded x509 attributes?

2017-11-20 Thread Libor Chocholaty
> STACK_OF(X509_ATTRIBUTE) *attrs = d2i_SEQ_X509_ATTRIBUTE(NULL, , > length); > > Cheers, > -Dave > >> On Nov 15, 2017, at 07:26, Libor Chocholaty <o...@mts.cz> wrote: >> >> Hello, >> >> I would like to parse DER encoded x509 attribut

[openssl-users] How to parse DER encoded x509 attributes?

2017-11-15 Thread Libor Chocholaty
Hello, I would like to parse DER encoded x509 attributes and have no clue how to use d2i_ASN1_SET_OF_X509_ATTRIBUTE. There are params that cannot find what to pass like free_func. I am trying to uderstand by collecting pieces of known code, looking into openssl sources but...