mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-28 23:52:06 +00:00
MINOR: ssl: move the cert_exts and the CERT_TYPE enum
Move the cert_exts declaration and the CERT_TYPE enum in the .h in order to reuse them in another file.
This commit is contained in:
parent
3b5a3a6c03
commit
aaacc7e8ad
@ -133,5 +133,25 @@ struct cafile_entry {
|
||||
char path[0];
|
||||
};
|
||||
|
||||
enum {
|
||||
CERT_TYPE_PEM = 0,
|
||||
CERT_TYPE_KEY,
|
||||
#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL)
|
||||
CERT_TYPE_OCSP,
|
||||
#endif
|
||||
CERT_TYPE_ISSUER,
|
||||
#ifdef HAVE_SSL_SCTL
|
||||
CERT_TYPE_SCTL,
|
||||
#endif
|
||||
CERT_TYPE_MAX,
|
||||
};
|
||||
|
||||
struct cert_exts {
|
||||
const char *ext;
|
||||
int type;
|
||||
int (*load)(const char *path, char *payload, struct cert_key_and_chain *ckch, char **err);
|
||||
/* add a parsing callback */
|
||||
};
|
||||
|
||||
#endif /* USE_OPENSSL */
|
||||
#endif /* _HAPROXY_SSL_CKCH_T_H */
|
||||
|
@ -65,5 +65,7 @@ void ssl_store_delete_cafile_entry(struct cafile_entry *ca_e);
|
||||
int ssl_store_load_ca_from_buf(struct cafile_entry *ca_e, char *cert_buf);
|
||||
int ssl_store_load_locations_file(char *path, int create_if_none, enum cafile_type type);
|
||||
|
||||
extern struct cert_exts cert_exts[];
|
||||
|
||||
#endif /* USE_OPENSSL */
|
||||
#endif /* _HAPROXY_SSL_CRTLIST_H */
|
||||
|
@ -1116,25 +1116,7 @@ int ssl_store_load_locations_file(char *path, int create_if_none, enum cafile_ty
|
||||
|
||||
/* Type of SSL payloads that can be updated over the CLI */
|
||||
|
||||
enum {
|
||||
CERT_TYPE_PEM = 0,
|
||||
CERT_TYPE_KEY,
|
||||
#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL)
|
||||
CERT_TYPE_OCSP,
|
||||
#endif
|
||||
CERT_TYPE_ISSUER,
|
||||
#ifdef HAVE_SSL_SCTL
|
||||
CERT_TYPE_SCTL,
|
||||
#endif
|
||||
CERT_TYPE_MAX,
|
||||
};
|
||||
|
||||
struct {
|
||||
const char *ext;
|
||||
int type;
|
||||
int (*load)(const char *path, char *payload, struct cert_key_and_chain *ckch, char **err);
|
||||
/* add a parsing callback */
|
||||
} cert_exts[CERT_TYPE_MAX+1] = {
|
||||
struct cert_exts cert_exts[CERT_TYPE_MAX+1] = {
|
||||
[CERT_TYPE_PEM] = { "", CERT_TYPE_PEM, &ssl_sock_load_pem_into_ckch }, /* default mode, no extensions */
|
||||
[CERT_TYPE_KEY] = { "key", CERT_TYPE_KEY, &ssl_sock_load_key_into_ckch },
|
||||
#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL)
|
||||
|
Loading…
Reference in New Issue
Block a user