zephyr/samples/net/sockets/websocket_client/src/ca_certificate.h
Jukka Rissanen b031a5a163 samples: net: websocket: App for doing Websocket client requests
This is BSD sockets based application for connecting to
Websocket server.

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
2019-10-04 16:38:34 +03:00

16 lines
319 B
C

/*
* Copyright (c) 2019 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#define CA_CERTIFICATE_TAG 1
#define TLS_PEER_HOSTNAME "localhost"
/* This is the same cert as what is found in net-tools/https-cert.pem file
*/
static const unsigned char ca_certificate[] = {
#include "https-cert.der.inc"
};