Home
last modified time | relevance | path

Searched full:ca (Results 1 – 25 of 101) sorted by relevance

12345

/Zephyr-latest/samples/tfm_integration/psa_crypto/src/
Dutil_sformat.c29 uint32_t ca; /* Current address. */ in sf_hex_tabulate_16() local
59 ca = fmt->addr; in sf_hex_tabulate_16()
64 ca++; in sf_hex_tabulate_16()
67 if (cpos == 16 || ca == ea) { in sf_hex_tabulate_16()
70 if (ca == ea) { in sf_hex_tabulate_16()
72 if (ca % 16) { in sf_hex_tabulate_16()
75 (16 - ca % 16) * 3, in sf_hex_tabulate_16()
80 &data[idx - (ca % 16)], in sf_hex_tabulate_16()
81 ca - fmt->addr < 16 ? in sf_hex_tabulate_16()
82 idx % 16 : ca % 16, in sf_hex_tabulate_16()
[all …]
/Zephyr-latest/samples/net/sockets/http_server/src/certs/
Dgen_ca_cert.sh4 # Generate a root CA private key
10 # Generate a root CA certificate using private key
17 -subj "/O=Zephyrproject/CN=Zephyrproject Sample Development CA"
Dgen_server_cert.sh21 echo "basicConstraints=critical,CA:FALSE" >> server_csr.ext
26 # Create a server certificate by signing the server CSR using the CA cert/key
30 -CA ca_cert.pem \
34 -CAserial ca.srl \
/Zephyr-latest/subsys/net/l2/ieee802154/
DKconfig.radio29 bool "IEEE 802.15.4 unslotted CSMA-CA medium access protocol"
31 Use CSMA-CA mechanism (listen-before-talk with exponential backoff)
54 The maximum number of backoffs the CSMA-CA algorithm will attempt
63 The minimum value of the backoff exponent (BE) in the CSMA-CA
72 The maximum value of the backoff exponent (BE) in the CSMA-CA
Dieee802154_priv.h26 * algorithm (CSMA/CA, ALOHA, etc.) and re-transmission protocol. See sections 6.2.5 (random
41 * @brief This function implements the configured channel access algorithm (CSMA/CA, ALOHA,
/Zephyr-latest/tests/net/socket/tls_ext/
DCMakeLists.txt12 ${ZEPHYR_BASE}/samples/net/sockets/echo_server/src/ca.der
13 ${gen_dir}/ca.inc
29 # since it seems to be the only one that is signed by a ca
/Zephyr-latest/samples/net/secure_mqtt_sensor_actuator/src/tls_config/
Dcert.h10 /* The CA certficate of the MQTT broker should be included here
13 * "cat ca.crt | sed -e '1d;$d' | base64 -d |xxd -i"
17 /* CA certificate for Mosquitto public broker
/Zephyr-latest/drivers/ieee802154/
DKconfig.cc13xx_cc26xx35 The maximum number of backoffs the CSMA-CA algorithm will attempt
44 The minimum value of the backoff exponent (BE) in the CSMA-CA
53 The maximum value of the backoff exponent (BE) in the CSMA-CA
77 clear channel assessment (CCA) modes 1 or 3 in the CSMA/CA
/Zephyr-latest/samples/net/cloud/aws_iot_mqtt/
DCMakeLists.txt13 NOT EXISTS ${APPLICATION_SOURCE_DIR}/src/creds/ca.c)
20 set(creds "src/creds/ca.c" "src/creds/key.c" "src/creds/cert.c")
/Zephyr-latest/tests/net/socket/tls_ext/src/
Dmain.c78 * @brief The Certificate Authority (CA) Certificate
80 * The client needs the CA cert to verify the server public key. TLS client
85 * the server also needs the CA cert in order to verify the client. This
88 static const unsigned char ca[] = { variable
89 #include "ca.inc"
128 #define ca NULL macro
435 * - ca cert (only when client authentication is required) in setup()
438 * - ca cert (to verify the server) in setup()
446 ca, sizeof(ca)); in setup()
447 zassert_equal(r, 0, "failed to add CA Certificate (%d)", r); in setup()
/Zephyr-latest/tests/net/lib/http_server/tls/
DCMakeLists.txt16 ${gen_dir}/ca.inc
32 # since it seems to be the only one that is signed by a ca
/Zephyr-latest/samples/net/cloud/aws_iot_mqtt/src/creds/
D.gitignore4 /ca.c
/Zephyr-latest/boards/sparkfun/nrf52_sparkfun/
DKconfig.defconfig3 # Copyright (c) 2017 Shawn Nock <shawn@monadnock.ca>
DKconfig.nrf52_sparkfun3 # Copyright (c) 2017 Shawn Nock <shawn@monadnock.ca>
/Zephyr-latest/samples/net/sockets/http_server/
DREADME.rst61 by a CA certificate trusted by your browser.
63 The best way to do this is to generate your own CA certificate:
69 Generate a server certificate signed by this CA certificate:
81 The CA certificate should be added to your browser's list of trusted authorities to
83 ``network.http.http2.enforce-tls-profile`` to false, since it seems that using a CA
DKconfig36 with security when using HTTP/2, at a minimum you will need to add the CA
/Zephyr-latest/subsys/net/l2/wifi/
DCMakeLists.txt50 ${ZEPHYR_BASE}/samples/net/wifi/test_certs/ca.pem
51 ${gen_dir}/ca.pem.inc
/Zephyr-latest/cmake/compiler/gcc/
Dtarget_mips.cmake2 # Copyright (c) 2021 Remy Luisant <remy@luisant.ca>
/Zephyr-latest/samples/subsys/mgmt/hawkbit/src/
Dca_certificate.h16 /* GlobalSign Root CA - R2 for https://google.com */
/Zephyr-latest/samples/net/sockets/http_get/src/
Dca_certificate.h16 /* GlobalSign Root CA - R1 for https://google.com */
/Zephyr-latest/tests/net/lib/http_server/tls/src/
Dmain.c49 static const unsigned char ca[] = { variable
50 #include "ca.inc"
238 ca, sizeof(ca)); in setup()
239 zassert_equal(ret, 0, "failed to add CA Certificate (%d)", ret); in setup()
/Zephyr-latest/samples/net/secure_mqtt_sensor_actuator/
DREADME.rst85 - Connecting securely using TLS, requires the inclusion of the broker's CA certificate
87 - Download the CA certificate in DER or PEM format from https://test.mosquitto.org
95 The CA cert should be included in the build as described above.
98 Depending on the CA cert being used, additional MbedTLS config options may need to be enabled.
183 …$ mosquitto_pub -d -h <test.mosquitto.org/local broker IP> --cafile <path/to/ca.crt> -t zephyr_sam…
/Zephyr-latest/samples/net/sockets/echo_server/src/
Dcertificate.h26 #include "ca.der.inc"
/Zephyr-latest/dts/bindings/ethernet/
Dadi,adin1110.yaml16 local-mac-address = [ CA 2F B7 10 23 63 ];
/Zephyr-latest/samples/net/prometheus/src/
Dcertificate.h33 #include "ca.der.inc"

12345