2018-11-14 01:02:02 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 2018 Merlok
|
|
|
|
//
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
2019-03-09 15:59:13 +08:00
|
|
|
// CA PEM certificates
|
2018-11-14 01:02:02 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef __ADDITIONAL_CA_H__
|
|
|
|
#define __ADDITIONAL_CA_H__
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2019-03-09 15:59:13 +08:00
|
|
|
// Concatenation of all CA certificates in PEM format if available
|
2018-11-14 01:02:02 +08:00
|
|
|
extern const char additional_ca_pem[];
|
|
|
|
extern const size_t additional_ca_pem_len;
|
|
|
|
|
|
|
|
#endif /* __ADDITIONAL_CA_H__ */
|