Updated to hostap_2_6
[mech_eap.git] / libeap / src / tls / tlsv1_cred.h
index 68fbdc9..716e93c 100644 (file)
@@ -14,11 +14,19 @@ struct tlsv1_credentials {
        struct x509_certificate *cert;
        struct crypto_private_key *key;
 
+       unsigned int cert_probe:1;
+       unsigned int ca_cert_verify:1;
+       unsigned int server_cert_only:1;
+       u8 srv_cert_hash[32];
+
        /* Diffie-Hellman parameters */
        u8 *dh_p; /* prime */
        size_t dh_p_len;
        u8 *dh_g; /* generator */
        size_t dh_g_len;
+
+       char *ocsp_stapling_response;
+       char *ocsp_stapling_response_multi;
 };