Skip to content

Commit 9a126e8

Browse files
committed
samples: siwx917_ota: http/s OTAF application
This application demonstrates the support for OTA firmware upgrade. Signed-off-by: Devika Raju <[email protected]>
1 parent 4a8123c commit 9a126e8

File tree

7 files changed

+1349
-0
lines changed

7 files changed

+1349
-0
lines changed

samples/siwx91x_ota/CMakeLists.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Copyright (c) 2025 Silicon Laboratories Inc.
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
cmake_minimum_required(VERSION 3.20.0)
5+
6+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
7+
project(siwx91x_ota)
8+
9+
target_sources(app PRIVATE src/main.c src/ca-cert_der.c)
10+
11+
# Ensure the directory for the generated file exists
12+
set(gen_dir ${ZEPHYR_BINARY_DIR}/include/generated/)
13+
file(MAKE_DIRECTORY ${gen_dir})

samples/siwx91x_ota/Kconfig

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Config options for OTA application
2+
#
3+
# Copyright (c) 2025 Silicon Laboratories Inc.
4+
# SPDX-License-Identifier: Apache-2.0
5+
6+
mainmenu "SiWx91x OTA Configuration"
7+
8+
menu "SiWx91x OTA application options"
9+
10+
config OTA_WIFI_SSID
11+
string "WiFi SSID"
12+
default "your_ssid"
13+
help
14+
WiFi SSID for the network to connect to.
15+
16+
config OTA_WIFI_PSK
17+
string "WiFi PSK"
18+
default "your_psk"
19+
help
20+
WiFi PSK (password) for the network to connect to.
21+
22+
config OTA_WIFI_SECURITY_TYPE
23+
int "WiFi security type"
24+
default 0
25+
range 0 1
26+
help
27+
WiFi security type for the network connection.
28+
0: Open (default)
29+
1: WPA2-PSK
30+
31+
config OTA_IP_PROTOCOL_SELECTION
32+
int "IP protocol selection"
33+
default 0
34+
range 0 1
35+
help
36+
Select IP protocol for OTA connection.
37+
0: IPv4 (default)
38+
1: IPv6
39+
40+
config OTA_UPDATE_URL
41+
string "OTA update URL"
42+
default "http://example.com:8080/firmware.rps"
43+
help
44+
The full URL for the OTA firmware update.
45+
46+
endmenu
47+
48+
source "Kconfig.zephyr"

samples/siwx91x_ota/README.rst

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# Copyright (c) 2025 Silicon Laboratories Inc.
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
.. zephyr:code-sample:: siwx91x_otas
5+
:name: HTTP OTA Firmware Update on SiWx917
6+
:relevant-api: wifi
7+
8+
Demonstrates HTTP/HTTPS OTA firmware update using SiWx917 on Zephyr.
9+
10+
Overview
11+
********
12+
13+
Application demonstrates how to perform HTTP/HTTPS OTA firmware updates on the
14+
SiWx917 platform using Zephyr RTOS. It connects to a Wi-Fi network, establishes
15+
a secure HTTPS connection using a CA certificate, and downloads firmware
16+
updates from a remote server. The application showcases secure connectivity and
17+
OTA update mechanisms for IoT devices.
18+
19+
Requirements
20+
************
21+
22+
* SiWx917 development board with Wi-Fi support
23+
* HTTP server
24+
25+
Configurations
26+
**************
27+
28+
The following configurations can be modified in ``prj.conf``:
29+
30+
* Wi-Fi Settings
31+
* ``CONFIG_OTA_WIFI_SSID`` - Network name
32+
* ``CONFIG_OTA_WIFI_PSK`` - Network password
33+
* ``CONFIG_OTA_WIFI_SECURITY_TYPE`` - wifi security type (0 - no security, 1 - WPA2-PSK security)
34+
* ``CONFIG_OTA_IP_PROTOCOL_SELECTION`` - Select IPv4 or IPv6
35+
36+
* OTA Server Settings
37+
* ``CONFIG_OTA_SERVER_IP`` or ``CONFIG_OTA_SERVER_HOSTNAME`` - Server address
38+
* ``CONFIG_OTA_SERVER_PORT`` - Server port
39+
* ``CONFIG_OTA_RPS_FILE`` - Firmware file on server
40+
* ``CONFIG_OTA_HTTPS_SUPPORT`` - Enable HTTPS (default: disabled)
41+
* ``CONFIG_OTA_USE_DNS_RESOLVER`` - Enable DNS resolution (set to 1 to use
42+
``CONFIG_OTA_SERVER_HOSTNAME``)
43+
44+
.. _signed image generation:
45+
https://docs.zephyrproject.org/latest/kconfig.html#CONFIG_SIWX91X_SIGN_KEY
46+
47+
Building and Running
48+
********************
49+
50+
1. Configure required settings
51+
2. Build and Flash
52+
53+
.. code-block:: console
54+
55+
west build -b siwx917_rb4338a siwx917_ota -p
56+
west flash
57+
58+
3. Run HTTP/HTTPS server
59+
60+
Test the Application
61+
********************
62+
63+
1. After flashing the SiWx91x, the device will scan for the specified AP and
64+
attempt to connect if found.
65+
2. Once connected, the SiWx91x will initiate an HTTP/S connection to the specified
66+
server and download the firmware binary.
67+
3. The OTA update process will be logged to the serial console.
68+
69+
Note
70+
****
71+
72+
This application is not for production.

samples/siwx91x_ota/prj.conf

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Copyright (c) 2025 Silicon Laboratories Inc.
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
# Network Stack Configuration
5+
CONFIG_NETWORKING=y
6+
CONFIG_NET_MGMT=y
7+
CONFIG_NET_TCP=y
8+
CONFIG_NET_CONNECTION_MANAGER=y
9+
10+
# IPv4/IPv6 Support
11+
CONFIG_NET_IPV4=y
12+
CONFIG_NET_IPV6=y
13+
CONFIG_NET_ARP=y
14+
CONFIG_NET_DHCPV4=y
15+
CONFIG_NET_DHCPV6=n
16+
17+
# WiFi Configuration
18+
CONFIG_WIFI=y
19+
20+
# Memory and Threading
21+
CONFIG_MAIN_STACK_SIZE=2048
22+
CONFIG_INIT_STACKS=y
23+
CONFIG_HEAP_MEM_POOL_SIZE=8192
24+
25+
# CMSIS Configuration
26+
CONFIG_CMSIS_V2_MUTEX_MAX_COUNT=10
27+
CONFIG_CMSIS_V2_EVT_FLAGS_MAX_COUNT=10
28+
29+
# Network Parameters
30+
CONFIG_NET_TCP_MAX_RECV_WINDOW_SIZE=10240
31+
32+
# Socket Support
33+
CONFIG_REQUIRES_FULL_LIBC=y
34+
CONFIG_NET_SOCKETS=y
35+
36+
# HTTP Client Configuration
37+
CONFIG_HTTP_CLIENT=y
38+
CONFIG_HTTP_PARSER_URL=y
39+
CONFIG_NET_MGMT_EVENT=y
40+
41+
# TLS Security Configuration
42+
CONFIG_MBEDTLS=y
43+
CONFIG_MBEDTLS_BUILTIN=y
44+
CONFIG_MBEDTLS_ENABLE_HEAP=y
45+
CONFIG_MBEDTLS_HEAP_SIZE=60000
46+
CONFIG_TLS_CREDENTIALS=y
47+
CONFIG_NET_SOCKETS_SOCKOPT_TLS=y
48+
CONFIG_MBEDTLS_SSL_MAX_CONTENT_LEN=8000
49+
50+
# TLS Protocol and Cipher Configuration
51+
CONFIG_MBEDTLS_TLS_VERSION_1_2=y
52+
CONFIG_MBEDTLS_SHA256=y
53+
CONFIG_MBEDTLS_CIPHER_AES_ENABLED=y
54+
CONFIG_MBEDTLS_CIPHER_ALL_ENABLED=y
55+
CONFIG_MBEDTLS_CIPHER_CHACHA20_ENABLED=y
56+
CONFIG_MBEDTLS_POLY1305=y
57+
58+
CONFIG_ASSERT=y
59+
60+
# DNS configuration
61+
CONFIG_DNS_RESOLVER=y
62+
63+
# for SLAAC configuration
64+
CONFIG_NET_IPV6_ND=y
65+
CONFIG_NET_IPV6_RA_RDNSS=y
66+
CONFIG_NET_IPV6_NBR_CACHE=y
67+
CONFIG_NET_IPV6_MLD=y
68+
CONFIG_NET_IPV6_DAD=y
69+
70+
# Wi-Fi configuration
71+
CONFIG_OTA_WIFI_SSID="<AP-NAME>"
72+
CONFIG_OTA_WIFI_PSK="<AP-PASSWORD>"
73+
CONFIG_OTA_WIFI_SECURITY_TYPE=0
74+
CONFIG_OTA_IP_PROTOCOL_SELECTION=0
75+
76+
# OTA Configuration
77+
CONFIG_WIFI_SILABS_SIWX91X_FIRMWARE_UPGRADE=y

samples/siwx91x_ota/sample.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Copyright (c) 2025 Silicon Laboratories Inc.
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
sample:
5+
name: HTTP/HTTPS OTAF
6+
description: HTTP/HTTPS OTA firmware update application for SiWx917
7+
tests:
8+
sample.net.http_otaf:
9+
harness: net
10+
platform_allow:
11+
- siwx917_rb4338a
12+
tags:
13+
- net
14+
- wifi
15+
- http
16+
- tls
17+
- ota
18+
integration_platforms:
19+
- siwx917_rb4338a
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
/*
2+
* Copyright (c) 2025 Silicon Laboratories Inc.
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
const unsigned char ca_cert_der[] = {
8+
0x30, 0x82, 0x04, 0xff, 0x30, 0x82, 0x03, 0xe7, 0xa0, 0x03, 0x02, 0x01, 0x02, 0x02, 0x14,
9+
0x6b, 0x9b, 0x70, 0xc6, 0xf1, 0xa3, 0x94, 0x65, 0x19, 0xa1, 0x08, 0x58, 0xef, 0xa7, 0x8d,
10+
0x2b, 0x7a, 0x83, 0xc1, 0xda, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d,
11+
0x01, 0x01, 0x0b, 0x05, 0x00, 0x30, 0x81, 0x94, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55,
12+
0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08,
13+
0x0c, 0x07, 0x4d, 0x6f, 0x6e, 0x74, 0x61, 0x6e, 0x61, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03,
14+
0x55, 0x04, 0x07, 0x0c, 0x07, 0x42, 0x6f, 0x7a, 0x65, 0x6d, 0x61, 0x6e, 0x31, 0x11, 0x30,
15+
0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x53, 0x61, 0x77, 0x74, 0x6f, 0x6f, 0x74,
16+
0x68, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x0a, 0x43, 0x6f, 0x6e,
17+
0x73, 0x75, 0x6c, 0x74, 0x69, 0x6e, 0x67, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04,
18+
0x03, 0x0c, 0x0f, 0x77, 0x77, 0x77, 0x2e, 0x77, 0x6f, 0x6c, 0x66, 0x73, 0x73, 0x6c, 0x2e,
19+
0x63, 0x6f, 0x6d, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d,
20+
0x01, 0x09, 0x01, 0x16, 0x10, 0x69, 0x6e, 0x66, 0x6f, 0x40, 0x77, 0x6f, 0x6c, 0x66, 0x73,
21+
0x73, 0x6c, 0x2e, 0x63, 0x6f, 0x6d, 0x30, 0x1e, 0x17, 0x0d, 0x32, 0x34, 0x31, 0x32, 0x31,
22+
0x38, 0x32, 0x31, 0x32, 0x35, 0x32, 0x39, 0x5a, 0x17, 0x0d, 0x32, 0x37, 0x30, 0x39, 0x31,
23+
0x34, 0x32, 0x31, 0x32, 0x35, 0x32, 0x39, 0x5a, 0x30, 0x81, 0x94, 0x31, 0x0b, 0x30, 0x09,
24+
0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03,
25+
0x55, 0x04, 0x08, 0x0c, 0x07, 0x4d, 0x6f, 0x6e, 0x74, 0x61, 0x6e, 0x61, 0x31, 0x10, 0x30,
26+
0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x42, 0x6f, 0x7a, 0x65, 0x6d, 0x61, 0x6e,
27+
0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x53, 0x61, 0x77, 0x74,
28+
0x6f, 0x6f, 0x74, 0x68, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x0a,
29+
0x43, 0x6f, 0x6e, 0x73, 0x75, 0x6c, 0x74, 0x69, 0x6e, 0x67, 0x31, 0x18, 0x30, 0x16, 0x06,
30+
0x03, 0x55, 0x04, 0x03, 0x0c, 0x0f, 0x77, 0x77, 0x77, 0x2e, 0x77, 0x6f, 0x6c, 0x66, 0x73,
31+
0x73, 0x6c, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x09, 0x2a, 0x86, 0x48,
32+
0x86, 0xf7, 0x0d, 0x01, 0x09, 0x01, 0x16, 0x10, 0x69, 0x6e, 0x66, 0x6f, 0x40, 0x77, 0x6f,
33+
0x6c, 0x66, 0x73, 0x73, 0x6c, 0x2e, 0x63, 0x6f, 0x6d, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d,
34+
0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82,
35+
0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbf, 0x0c, 0xca,
36+
0x2d, 0x14, 0xb2, 0x1e, 0x84, 0x42, 0x5b, 0xcd, 0x38, 0x1f, 0x4a, 0xf2, 0x4d, 0x75, 0x10,
37+
0xf1, 0xb6, 0x35, 0x9f, 0xdf, 0xca, 0x7d, 0x03, 0x98, 0xd3, 0xac, 0xde, 0x03, 0x66, 0xee,
38+
0x2a, 0xf1, 0xd8, 0xb0, 0x7d, 0x6e, 0x07, 0x54, 0x0b, 0x10, 0x98, 0x21, 0x4d, 0x80, 0xcb,
39+
0x12, 0x20, 0xe7, 0xcc, 0x4f, 0xde, 0x45, 0x7d, 0xc9, 0x72, 0x77, 0x32, 0xea, 0xca, 0x90,
40+
0xbb, 0x69, 0x52, 0x10, 0x03, 0x2f, 0xa8, 0xf3, 0x95, 0xc5, 0xf1, 0x8b, 0x62, 0x56, 0x1b,
41+
0xef, 0x67, 0x6f, 0xa4, 0x10, 0x41, 0x95, 0xad, 0x0a, 0x9b, 0xe3, 0xa5, 0xc0, 0xb0, 0xd2,
42+
0x70, 0x76, 0x50, 0x30, 0x5b, 0xa8, 0xe8, 0x08, 0x2c, 0x7c, 0xed, 0xa7, 0xa2, 0x7a, 0x8d,
43+
0x38, 0x29, 0x1c, 0xac, 0xc7, 0xed, 0xf2, 0x7c, 0x95, 0xb0, 0x95, 0x82, 0x7d, 0x49, 0x5c,
44+
0x38, 0xcd, 0x77, 0x25, 0xef, 0xbd, 0x80, 0x75, 0x53, 0x94, 0x3c, 0x3d, 0xca, 0x63, 0x5b,
45+
0x9f, 0x15, 0xb5, 0xd3, 0x1d, 0x13, 0x2f, 0x19, 0xd1, 0x3c, 0xdb, 0x76, 0x3a, 0xcc, 0xb8,
46+
0x7d, 0xc9, 0xe5, 0xc2, 0xd7, 0xda, 0x40, 0x6f, 0xd8, 0x21, 0xdc, 0x73, 0x1b, 0x42, 0x2d,
47+
0x53, 0x9c, 0xfe, 0x1a, 0xfc, 0x7d, 0xab, 0x7a, 0x36, 0x3f, 0x98, 0xde, 0x84, 0x7c, 0x05,
48+
0x67, 0xce, 0x6a, 0x14, 0x38, 0x87, 0xa9, 0xf1, 0x8c, 0xb5, 0x68, 0xcb, 0x68, 0x7f, 0x71,
49+
0x20, 0x2b, 0xf5, 0xa0, 0x63, 0xf5, 0x56, 0x2f, 0xa3, 0x26, 0xd2, 0xb7, 0x6f, 0xb1, 0x5a,
50+
0x17, 0xd7, 0x38, 0x99, 0x08, 0xfe, 0x93, 0x58, 0x6f, 0xfe, 0xc3, 0x13, 0x49, 0x08, 0x16,
51+
0x0b, 0xa7, 0x4d, 0x67, 0x00, 0x52, 0x31, 0x67, 0x23, 0x4e, 0x98, 0xed, 0x51, 0x45, 0x1d,
52+
0xb9, 0x04, 0xd9, 0x0b, 0xec, 0xd8, 0x28, 0xb3, 0x4b, 0xbd, 0xed, 0x36, 0x79, 0x02, 0x03,
53+
0x01, 0x00, 0x01, 0xa3, 0x82, 0x01, 0x45, 0x30, 0x82, 0x01, 0x41, 0x30, 0x1d, 0x06, 0x03,
54+
0x55, 0x1d, 0x0e, 0x04, 0x16, 0x04, 0x14, 0x27, 0x8e, 0x67, 0x11, 0x74, 0xc3, 0x26, 0x1d,
55+
0x3f, 0xed, 0x33, 0x63, 0xb3, 0xa4, 0xd8, 0x1d, 0x30, 0xe5, 0xe8, 0xd5, 0x30, 0x81, 0xd4,
56+
0x06, 0x03, 0x55, 0x1d, 0x23, 0x04, 0x81, 0xcc, 0x30, 0x81, 0xc9, 0x80, 0x14, 0x27, 0x8e,
57+
0x67, 0x11, 0x74, 0xc3, 0x26, 0x1d, 0x3f, 0xed, 0x33, 0x63, 0xb3, 0xa4, 0xd8, 0x1d, 0x30,
58+
0xe5, 0xe8, 0xd5, 0xa1, 0x81, 0x9a, 0xa4, 0x81, 0x97, 0x30, 0x81, 0x94, 0x31, 0x0b, 0x30,
59+
0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06,
60+
0x03, 0x55, 0x04, 0x08, 0x0c, 0x07, 0x4d, 0x6f, 0x6e, 0x74, 0x61, 0x6e, 0x61, 0x31, 0x10,
61+
0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x42, 0x6f, 0x7a, 0x65, 0x6d, 0x61,
62+
0x6e, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x53, 0x61, 0x77,
63+
0x74, 0x6f, 0x6f, 0x74, 0x68, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c,
64+
0x0a, 0x43, 0x6f, 0x6e, 0x73, 0x75, 0x6c, 0x74, 0x69, 0x6e, 0x67, 0x31, 0x18, 0x30, 0x16,
65+
0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0f, 0x77, 0x77, 0x77, 0x2e, 0x77, 0x6f, 0x6c, 0x66,
66+
0x73, 0x73, 0x6c, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x09, 0x2a, 0x86,
67+
0x48, 0x86, 0xf7, 0x0d, 0x01, 0x09, 0x01, 0x16, 0x10, 0x69, 0x6e, 0x66, 0x6f, 0x40, 0x77,
68+
0x6f, 0x6c, 0x66, 0x73, 0x73, 0x6c, 0x2e, 0x63, 0x6f, 0x6d, 0x82, 0x14, 0x6b, 0x9b, 0x70,
69+
0xc6, 0xf1, 0xa3, 0x94, 0x65, 0x19, 0xa1, 0x08, 0x58, 0xef, 0xa7, 0x8d, 0x2b, 0x7a, 0x83,
70+
0xc1, 0xda, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x1d, 0x13, 0x04, 0x05, 0x30, 0x03, 0x01, 0x01,
71+
0xff, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x1d, 0x11, 0x04, 0x15, 0x30, 0x13, 0x82, 0x0b, 0x65,
72+
0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x87, 0x04, 0x7f, 0x00, 0x00,
73+
0x01, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x1d, 0x25, 0x04, 0x16, 0x30, 0x14, 0x06, 0x08, 0x2b,
74+
0x06, 0x01, 0x05, 0x05, 0x07, 0x03, 0x01, 0x06, 0x08, 0x2b, 0x06, 0x01, 0x05, 0x05, 0x07,
75+
0x03, 0x02, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x0b,
76+
0x05, 0x00, 0x03, 0x82, 0x01, 0x01, 0x00, 0x77, 0x3b, 0x3d, 0x66, 0x74, 0xbc, 0x97, 0xfe,
77+
0x40, 0x16, 0xe6, 0xba, 0xa5, 0xd5, 0xd1, 0x84, 0x08, 0x89, 0x69, 0x4f, 0x88, 0x0d, 0x57,
78+
0xa9, 0xef, 0x8c, 0xc3, 0x97, 0x52, 0xc8, 0xbd, 0x8b, 0xa2, 0x49, 0x3b, 0xb7, 0xf7, 0x5d,
79+
0x1e, 0xd6, 0x14, 0x7f, 0xb2, 0x80, 0x33, 0xda, 0xa0, 0x8a, 0xd3, 0xe1, 0x2f, 0xd5, 0xbc,
80+
0x33, 0x9f, 0xea, 0x5a, 0x72, 0x24, 0xe5, 0xf8, 0xb8, 0x4b, 0xb3, 0xdf, 0x62, 0x90, 0x3b,
81+
0xa8, 0x21, 0xef, 0x27, 0x42, 0x75, 0xbc, 0x60, 0x02, 0x8e, 0x37, 0x35, 0x99, 0xeb, 0xa3,
82+
0x28, 0xf2, 0x65, 0x4c, 0xff, 0x7a, 0xf8, 0x8e, 0xcc, 0x23, 0x6d, 0xe5, 0x6a, 0xfe, 0x22,
83+
0x5a, 0xd9, 0xb2, 0x4f, 0x47, 0xc7, 0xe0, 0xae, 0x98, 0xef, 0x94, 0xac, 0xb6, 0x4f, 0x61,
84+
0x81, 0x29, 0x8e, 0xe1, 0x79, 0x2c, 0x46, 0xfc, 0xe9, 0x1a, 0xc3, 0x96, 0x1f, 0x19, 0x93,
85+
0x64, 0x2e, 0x9f, 0x37, 0x72, 0xc5, 0xe4, 0x93, 0x4e, 0x61, 0x5f, 0x38, 0x8e, 0xae, 0xe8,
86+
0x39, 0x19, 0xe6, 0x97, 0xa8, 0x91, 0xd4, 0x23, 0x7e, 0x1e, 0xd2, 0xd0, 0x53, 0xec, 0xcc,
87+
0xac, 0xa0, 0x1d, 0xd0, 0xb7, 0xdd, 0xb1, 0xb7, 0x01, 0x2e, 0x96, 0xcd, 0x85, 0x27, 0xe0,
88+
0xe7, 0x47, 0xe2, 0xc1, 0xc1, 0x00, 0xf6, 0x94, 0xdf, 0x77, 0xe7, 0xfa, 0xc6, 0xef, 0x8a,
89+
0xc0, 0x7c, 0x67, 0xbc, 0xff, 0xa0, 0x7c, 0x94, 0x3b, 0x7d, 0x86, 0x42, 0xaf, 0x3d, 0x83,
90+
0x31, 0xee, 0x2a, 0x3b, 0x7b, 0xf0, 0x2c, 0x9e, 0x6f, 0xe9, 0xc4, 0x07, 0x81, 0x24, 0xda,
91+
0x05, 0x70, 0x4d, 0xdd, 0x09, 0xae, 0x9e, 0x72, 0xb8, 0x21, 0x0e, 0x8c, 0xb2, 0xab, 0xaa,
92+
0x4c, 0x49, 0x10, 0xf7, 0x76, 0xf9, 0xb5, 0x0d, 0x6c, 0x20, 0xd3, 0xdf, 0x7a, 0x06, 0x32,
93+
0x8d, 0x29, 0x1f, 0x28, 0x1d, 0x8d, 0x26, 0x33};
94+
unsigned int ca_cert_der_len = 1283;

0 commit comments

Comments
 (0)