2008-02-27 20:34:43 -05:00
|
|
|
/*
|
|
|
|
* TLSv1 credentials
|
|
|
|
* Copyright (c) 2006-2007, Jouni Malinen <j@w1.fi>
|
|
|
|
*
|
2012-02-11 09:46:35 -05:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2008-02-27 20:34:43 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TLSV1_CRED_H
|
|
|
|
#define TLSV1_CRED_H
|
|
|
|
|
|
|
|
struct tlsv1_credentials {
|
|
|
|
struct x509_certificate *trusted_certs;
|
|
|
|
struct x509_certificate *cert;
|
|
|
|
struct crypto_private_key *key;
|
|
|
|
|
2015-11-21 20:02:55 -05:00
|
|
|
unsigned int ca_cert_verify:1;
|
|
|
|
|
2008-02-27 20:34:43 -05:00
|
|
|
/* Diffie-Hellman parameters */
|
|
|
|
u8 *dh_p; /* prime */
|
|
|
|
size_t dh_p_len;
|
|
|
|
u8 *dh_g; /* generator */
|
|
|
|
size_t dh_g_len;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct tlsv1_credentials * tlsv1_cred_alloc(void);
|
|
|
|
void tlsv1_cred_free(struct tlsv1_credentials *cred);
|
|
|
|
int tlsv1_set_ca_cert(struct tlsv1_credentials *cred, const char *cert,
|
|
|
|
const u8 *cert_blob, size_t cert_blob_len,
|
|
|
|
const char *path);
|
|
|
|
int tlsv1_set_cert(struct tlsv1_credentials *cred, const char *cert,
|
|
|
|
const u8 *cert_blob, size_t cert_blob_len);
|
|
|
|
int tlsv1_set_private_key(struct tlsv1_credentials *cred,
|
|
|
|
const char *private_key,
|
|
|
|
const char *private_key_passwd,
|
|
|
|
const u8 *private_key_blob,
|
|
|
|
size_t private_key_blob_len);
|
|
|
|
int tlsv1_set_dhparams(struct tlsv1_credentials *cred, const char *dh_file,
|
|
|
|
const u8 *dh_blob, size_t dh_blob_len);
|
|
|
|
|
|
|
|
#endif /* TLSV1_CRED_H */
|