RE: EC_KEY_new_by_curve_name returns NULL

2012-05-23 Thread Khuc, Chuong D.
Hello, Thank you so much for your response. I already sent an email to ask my colleague to find out what curve I should use. However, when I tried using either NID_secp256k1 or NID_X9_62_prime256v1 (because they are the only two curves of 256 bit). I keep getting segmentation fault, so I never

compiling - Linker Error

2012-05-23 Thread Kai Grusa, synMedico GmbH
Hi, I try to compile OpenSSL 1.0.1c, but I get a lot of linker errors Microsoft (R) Windows (R) Resource Compiler Version 6.1.6723.1 Copyright (C) Microsoft Corporation. All rights reserved. link /nologo /subsystem:console /opt:ref /debug /dll /out:out32dll\libeay32.dll

Re: EC_KEY_new_by_curve_name returns NULL

2012-05-23 Thread Matt Caswell (fr...@baggins.org)
On 22/05/12 17:35, Khuc, Chuong D. wrote: Hello, Thank you so much for your response. I already sent an email to ask my colleague to find out what curve I should use. However, when I tried using either NID_secp256k1 or NID_X9_62_prime256v1 (because they are the only two curves of 256 bit). I

License text, OpenSSL used by FFmpeg

2012-05-23 Thread Antti Peuhkurinen
Hi! I am using both FFmpeg and OpenSSL in my project (FFmpeg uses openssl's .so on Android platform). Which kind of license text should be put to marketing etc. material? Is This software is using FFmpeg LINK and OpenSSL LINK enough? Cheers, Antti

Re: License text, OpenSSL used by FFmpeg

2012-05-23 Thread Jakob Bohm
On 5/23/2012 4:47 PM, Antti Peuhkurinen wrote: Hi! I am using both FFmpeg and OpenSSL in my project (FFmpeg uses openssl's .so on Android platform). Which kind of license text should be put to marketing etc. material? Is This software is using FFmpeg LINK and OpenSSLLINK enough? For ffmpeg

RE: Where is EVP_aes_256_gcm?

2012-05-23 Thread Li, David
Ok, I found that. But this raises another question: what to use in EVP_* APIs for AES-GCM mode? For instance, the following code was OK for EVN_aes_128_ecb but won't compile because it couldn't find EVP_aes_256_gcm. EVP_CIPHER_CTX ctx; EVP_CIPHER_CTX_init(ctx); EVP_EncryptInit_ex(ctx,

Re: Where is EVP_aes_256_gcm?

2012-05-23 Thread Matt Caswell (fr...@baggins.org)
According to the Changelog (http://www.openssl.org/news/changelog.html) experimental EVP support for AES-GCM is only in the (as yet unreleased) 1.1.0 branch. Matt On 23 May 2012 16:29, Li, David l...@cloudshield.com wrote: Ok, I found that. But this raises another question:  what to use in

n00b Cert Questions

2012-05-23 Thread Chris Arnold
Hi all! I am trying to generate Certs for use with strongswan VPN. Specifically, I am trying to fulfill: http://wiki.strongswan.org/projects/strongswan/wiki/Win7CertReq So as to use windows 7 builtin VPN client. Has anyone here done this with strongswan? Can anyone point me to a doc that has

Re: SSL_Certificate Validation ( Server Authentication): Please Help

2012-05-23 Thread Mr.Rout
Since 5 days i have not received any response. It could be a silly questions to you guys. But i need the answer. Waiting for a nice reply. Best Regards, S S Rout -- View this message in context:

Re: Where is EVP_aes_256_gcm?

2012-05-23 Thread Dr. Stephen Henson
On Wed, May 23, 2012, Matt Caswell (fr...@baggins.org) wrote: According to the Changelog (http://www.openssl.org/news/changelog.html) experimental EVP support for AES-GCM is only in the (as yet unreleased) 1.1.0 branch. It was backported to 1.0.1 too. Steve. -- Dr Stephen N. Henson.

RE: Where is EVP_aes_256_gcm?

2012-05-23 Thread Li, David
That's good news. Where can I find a simple example how to use AES-GCM using EVP-* apis? David -Original Message- From: owner-openssl-us...@openssl.org [mailto:owner-openssl- us...@openssl.org] On Behalf Of Dr. Stephen Henson Sent: Wednesday, May 23, 2012 12:05 PM To:

Re: Where is EVP_aes_256_gcm?

2012-05-23 Thread Dr. Stephen Henson
On Wed, May 23, 2012, Li, David wrote: That's good news. Where can I find a simple example how to use AES-GCM using EVP-* apis? There isn't a simple example at present. The nearest is the function FIPS_selftest_aes_gcm in the FIPS module which uses the FIPS_ APIs which you need to translate