Connecting to WPA2-Enterprise with AES Encryption

emmaleepk
Posts: 1
Joined: Fri Feb 09, 2018 10:22 pm

Connecting to WPA2-Enterprise with AES Encryption

Postby emmaleepk » Fri Feb 09, 2018 10:31 pm

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

mickeypop
Posts: 11
Joined: Mon May 08, 2017 8:56 pm

Re: Connecting to WPA2-Enterprise with AES Encryption

Postby mickeypop » Sat Feb 17, 2018 3:36 am

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(".");
  }

User avatar
kolban
Posts: 1683
Joined: Mon Nov 16, 2015 4:43 pm
Location: Texas, USA

Re: Connecting to WPA2-Enterprise with AES Encryption

Postby kolban » Wed Apr 11, 2018 4:33 am

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.
Free book on ESP32 available here: https://leanpub.com/kolban-ESP32

Who is online

Users browsing this forum: No registered users and 57 guests