- Added client side support for signature_algorithm extension and affiliated handling
diff --git a/include/polarssl/ssl.h b/include/polarssl/ssl.h
index 69e7a06..61a73d2 100644
--- a/include/polarssl/ssl.h
+++ b/include/polarssl/ssl.h
@@ -180,6 +180,7 @@
#define SSL_ALERT_MSG_INTERNAL_ERROR 80 /* 0x50 */
#define SSL_ALERT_MSG_USER_CANCELED 90 /* 0x5A */
#define SSL_ALERT_MSG_NO_RENEGOTIATION 100 /* 0x64 */
+#define SSL_ALERT_MSG_UNSUPPORTED_EXT 110 /* 0x6E */
#define SSL_HS_HELLO_REQUEST 0
#define SSL_HS_CLIENT_HELLO 1
@@ -198,6 +199,8 @@
#define TLS_EXT_SERVERNAME 0
#define TLS_EXT_SERVERNAME_HOSTNAME 0
+#define TLS_EXT_SIG_ALG 13
+
/*
* SSL state machine
*/