UTF8 question

2008-06-16 Thread Gerhard Gappmeier
Hi I can create certificates with UTF-8 Strings like this: X509_NAME_add_entry_by_txt ( pName, CN, MBSTRING_UTF8, ( unsigned char* ) subject.commonName.toUtf8(), -1, -1, 0 ); But how can I read back entries in the same encoding? X509_NAME_get_text_by_NID does not return UTF-8 and I cannot find

Linker errors on windows

2008-06-16 Thread Gerhard Gappmeier
Hello I tried to deactivate patented algorithms that are mentioned in README, but I get unresolved externals linker errors. I'm building this way: set OPTS=no-asm perl Configure disable-idea disable-rc4 disable-rc5 disable-ntt disable-mdc2 VC-WIN32 perl util\mkfiles.pl MINFO perl

Re: Linker errors on windows

2008-06-16 Thread Gerhard Gappmeier
to look for specific build releases without these algorithms. On 6/16/08, Gerhard Gappmeier [EMAIL PROTECTED] wrote: Hello I tried to deactivate patented algorithms that are mentioned in README, but I get unresolved externals linker errors. I'm building this way: set OPTS=no-asm perl Configure

Re: linking errors on linux........!

2008-06-17 Thread Gerhard Gappmeier
but could you please give me the whole procedure that why the linking errors?? how to link with the Library it needed .. i think in linux it require Libcrypto.so and libssl.so.. please provide me the steps.. thnx in advance regards, Vinni -- mit freundlichen Grüßen / best regards Gerhard

How to extract subjectAltName

2008-06-17 Thread Gerhard Gappmeier
Hi, I try to read subjectAltName, but ASN1_STRING_to_UTF8 seems not to work. For the X509_NAME entries the same procedure works, but this ASN1_STRING seems to be different. In the debugger I can already see the ASN1_STRING: pString-length = 43 pString-type = 4 pString-data = 0)†urn:x:bla‚

Re: How to extract subjectAltName

2008-06-18 Thread Gerhard Gappmeier
); ret.subjectAltName.appendNameValue(conf-name, conf-value); } sk_CONF_VALUE_pop_free(vals, CONF_VALUE_free); -- mit freundlichen Grüßen / best regards Gerhard Gappmeier ascolab GmbH - automation system communication laboratory Tel.: +49 9131 691 123 Fax: +49 9131 691 128 Web: http://www.ascolab.com GPG-Key: http

Re: How to unsubsribe from OpenSSL Users ML

2008-06-18 Thread Gerhard Gappmeier
of the thousands of emails i have rec'd and been able to find one thing i could understand. please HELP* -- mit freundlichen Grüßen / best regards *Gerhard Gappmeier* ascolab GmbH - automation systems communication laboratory Tel.: +49 9131 691 123 Fax: +49 9131 691 128 Web: http

Reference Counters in OpenSSL

2008-06-18 Thread Gerhard Gappmeier
or naming convention to know how to use that? Or is the only possibilty to figure that out debugging into the code? -- mit freundlichen Grüßen / best regards *Gerhard Gappmeier* ascolab GmbH - automation systems communication laboratory Tel.: +49 9131 691 123 Fax: +49 9131 691 128 Web: http

Re: How to unsubsribe from OpenSSL Users ML

2008-06-18 Thread Gerhard Gappmeier
of emails i have rec'd and been able to find one thing i could understand. please HELP* -- mit freundlichen Grüßen / best regards *Gerhard Gappmeier* ascolab GmbH - automation systems communication laboratory Tel.: +49 9131 691 123 Fax: +49 9131 691 128 Web: http://www.ascolab.com GPG-Key: http

certificate signing authority is unknown or invalid

2008-06-19 Thread Gerhard Gappmeier
basicConstraints to CA:TRUE or CA:FALSE for a self-signed certificate? 2.) What extension is missing or wrong so that I can get valid certificate? -- mit freundlichen Grüßen / best regards Gerhard Gappmeier ascolab GmbH - automation system communication laboratory Tel.: +49 9131 691 123 Fax: +49 9131 691

Re: certificate signing authority is unknown or invalid

2008-06-19 Thread Gerhard Gappmeier
? Kah Goh schrieb: Hi, So what are you doing to get the certificate signing authority is unknown or invalid? Is it an error from OpenSSL? What are you doing when you get this message? On 19/06/2008, *Gerhard Gappmeier* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: It's

Re: How to install PEM format Server Certificate in Windows Server 2003

2008-06-27 Thread Gerhard Gappmeier
. Then after install, how to initiate the TLS connection with my client terminal? regards, SweeHong -- mit freundlichen Grüßen / best regards *Gerhard Gappmeier* ascolab GmbH - automation systems communication laboratory Tel.: +49 9131 691 123 Fax: +49 9131 691 128 Web: http://www.ascolab.com GPG-Key

Re: Certificate validation problem

2008-10-10 Thread Gerhard Gappmeier
the missing field. In our protocol this field is mandatory because our commonNames are not always unique. On Friday 10 October 2008 02:03:44 Dave Thompson wrote: -Original Message- From: [EMAIL PROTECTED] On Behalf Of Gerhard Gappmeier Sent: Wednesday, 08 October, 2008 08:14 I've

License Question

2009-01-26 Thread Gerhard Gappmeier
the OpenSSL license This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) in the PLC manual? -- mit freundlichen Grüßen / best regards *Gerhard Gappmeier* ascolab GmbH - automation systems communication laboratory Tel.: +49 9131 691

[openssl-users] How to use EVP_aes_256_cbc_hmac_sha256

2016-11-08 Thread Gerhard Gappmeier
Hi, I'm trying to use EVP_EncryptUpdate() with EVP_aes_256_cbc_hmac_sha256() to speed up encryption. This "stiched" version should be faster than first hashing and then encrypt the data. See also https://software.intel.com/sites/default/files/open-ssl-performance-paper.pdf for some background.