DTLS Device Client Certificates
Prerequisites
Constraints & Requirements
Option A - ECDSA (P-256, recommended)
mkdir -p ~/coap-pki && cd ~/coap-pki
# CA private key (PKCS#8 unencrypted)
openssl genpkey -algorithm EC -pkeyopt ec_paramgen_curve:P-256 -out ca.key
# Self-signed CA certificate (10-year validity)
openssl req -new -x509 -key ca.key -sha256 -days 3650 \
-subj "/CN=akenza CoAP CA" \
-out ca.crtOption B - RSA 2048
Test the Connection
Utility Tools
Bulk Device Client Certificate Generation
Inspection Commands
Last updated
Was this helpful?