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 translat

RE: Where is EVP_aes_256_gcm?

2012-05-23 Thread Li, David
gt;To: openssl-users@openssl.org >Subject: Re: Where is EVP_aes_256_gcm? > >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

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. Ope

Re: Where is EVP_aes_256_gcm?

2012-05-23 Thread Matt Caswell (fr...@baggins.org)
     EVP_aes_128_ecb(), //can't find > EVP_aes_256_gcm > > > > -  David > > - > > > > From: owner-openssl-us...@openssl.org > [mailto:owner-openssl-us...@openssl.org] On Behalf Of Matt Caswell > (fr...@baggins.org) > Se

RE: Where is EVP_aes_256_gcm?

2012-05-23 Thread Li, David
49 AM To: openssl-users@openssl.org Subject: Re: Where is EVP_aes_256_gcm? On 22/05/12 17:35, Li, David wrote: Hi All, I can't find this function in the source tree? It seems pointing to FIPS_aes_256_gcm. All I see is: grep -r FIPS_evp_aes_256_gcm . ./crypto/evp/evp_fips.c:const EVP_CIPHER *EVP

Re: Where is EVP_aes_256_gcm?

2012-05-22 Thread Matt Caswell (fr...@baggins.org)
On 22/05/12 17:35, Li, David wrote: Hi All, I can't find this function in the source tree? It seems pointing to FIPS_aes_256_gcm. All I see is: grep -r FIPS_evp_aes_256_gcm . ./crypto/evp/evp_fips.c:const EVP_CIPHER *EVP_aes_256_gcm(void) { return FIPS_evp_aes_256_gcm(); } Anyone know