Index: crypto/evp/e_aes.c
===================================================================
RCS file: /v/openssl/cvs/openssl/crypto/evp/e_aes.c,v
retrieving revision 1.23
diff -U 10 -r1.23 e_aes.c
--- crypto/evp/e_aes.c  19 Feb 2011 22:16:52 -0000      1.23
+++ crypto/evp/e_aes.c  13 Apr 2011 23:12:49 -0000
@@ -434,21 +434,21 @@
        NULL,
        aes_gcm_ctrl,
        NULL
        };

 const EVP_CIPHER *EVP_aes_192_gcm (void)
 {      return &aes_192_gcm_cipher;     }

 static const EVP_CIPHER aes_256_gcm_cipher=
        {
-       NID_aes_128_gcm,1,32,12,
+       NID_aes_256_gcm,1,32,12,
        EVP_CIPH_GCM_MODE|EVP_CIPH_FLAG_FIPS|EVP_CIPH_FLAG_DEFAULT_ASN1
                | EVP_CIPH_CUSTOM_IV | EVP_CIPH_FLAG_CUSTOM_CIPHER
                | EVP_CIPH_ALWAYS_CALL_INIT | EVP_CIPH_CTRL_INIT
                | EVP_CIPH_FLAG_FIPS,
        aes_gcm_init_key,
        aes_gcm,
        aes_gcm_cleanup,
        sizeof(EVP_AES_GCM_CTX),
        NULL,
        NULL,
