You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/esp8266wifi/client-secure-class.rst
+23
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,29 @@ Client Secure Class
5
5
6
6
Methods and properties described in this section are specific to ESP8266. They are not covered in `Arduino WiFi library <https://www.arduino.cc/en/Reference/WiFi>`__ documentation. Before they are fully documented please refer to information below.
7
7
8
+
Supported crypto
9
+
~~~~~~~~~~~~~~~~
10
+
11
+
In the background the library `axtls <http://axtls.sourceforge.net>`_ is used. The library supports only rsa certificates and no new eliptic curve certificates. TLSv1.2 is supported since SDK 2.4.0-rc1.
12
+
13
+
The following ciphers and digests are supported by `specification <http://axtls.sourceforge.net/specifications.htm>`_:
14
+
15
+
* Symmetric Ciphers
16
+
* AES128-SHA
17
+
* AES256-SHA
18
+
* AES128-SHA256
19
+
* AES256-SHA256
20
+
* Asymmetric Ciphers
21
+
* RSA 512/1024/2048/4096 bit encryption/decryption.
0 commit comments