Should openssl be compiled with any special flag to get AES functionality?
This is w.r.t openssl-0.9.7-beta3

I have:
 ssl = SSL_new (ctx);                         CHK_NULL(ssl);

  if(!SSL_set_cipher_list(ssl,cipher)) {
       printf("error setting cipher list\n");
  }else {
       printf("setting AES cipher successfully\n");
  }

Here, there is no error returned.

Then, I verify by calling:

ssl_cipher =SSL_get_current_cipher(ssl);
    printf("%s, Cipher is %s\n",
       SSL_CIPHER_get_version(ssl_cipher),
       SSL_CIPHER_get_name(ssl_cipher));

which returns NONE. Any debugging pointers will be very helpful, thanks,

setting AES cipher successfully
(NONE), Cipher is (NONE)

--
Sunitha Kumar
Software Engineer
http://www.cisco.com


______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to