Page 1 of 1

Connecting to WPA2-Enterprise with AES Encryption

Posted: Fri Feb 09, 2018 10:31 pm
by emmaleepk
Hi.

For a school project we need to connect an arduino to our schools wifi. We were wondering if the EPS32 development board would allow us to connect to a WPA2-Enterprise network with AES Encryption. If anyone knows if this is possible or has done it before please let me know!

Thanks

Re: Connecting to WPA2-Enterprise with AES Encryption

Posted: Sat Feb 17, 2018 3:36 am
by mickeypop
ESP has native hardware encryption for AES

this will connect just fine

Code: Select all

  const char* rssiSSID = "YourSSID";             
  const char* password = "PassPhrase";

  WiFi.begin( rssiSSID , password );

  while (WiFi.status() != WL_CONNECTED  ) 
  {
    delay( 80 );
      Serial.print(".");
  }

Re: Connecting to WPA2-Enterprise with AES Encryption

Posted: Wed Apr 11, 2018 4:33 am
by kolban
According to this link ...

http://esp-idf.readthedocs.io/en/latest ... uth_mode_t

WIFI_AUTH_WPA2_ENTERPRISE

is one of the supported authentication types.