This repository was archived by the owner on Aug 3, 2026. It is now read-only.

Repository files navigation

Warning

This repository is deprecated and no longer maintained.

Search for an equivalent library under the ZekStack organization at: ZekStack/repositories

ESPCrypto

ESPCrypto wraps the ESP32 hardware crypto blocks (SHA, AES-GCM/CTR, RSA/ECC) with guardrails, automatic fallbacks, and high-level helpers (JWTs, salted hashes) that work in both ESP-IDF and Arduino builds.

CI / Release / License

CIReleaseLicense: MIT

Toolchain Compatibility

  • GitHub Actions builds against the ESP32 Arduino core 3.3.3 via Espressif's board manager URL (IDF 5.x generation) and caches the toolchains to keep PlatformIO/Arduino builds in sync for esp32, esp32-s3, esp32-c3, and esp32-p4 boards.
  • Runtime code gates the mbedTLS 2.x (ESP-IDF 4.x) and 3.x (ESP-IDF 5.x) API differences—including the ESP AES-GCM alt streaming signatures—so PlatformIO/Arduino builds succeed regardless of which ESP-IDF revision a board package ships.
  • Device fingerprinting prefers esp_read_mac from esp_mac.h when present and falls back to esp_efuse_mac_get_default, so Arduino/PlatformIO board packages that dropped esp_efuse_mac.h still build.

Features

  • SHA256/384/512 helpers that try the ESP parallel SHA engine first and fall back to mbedTLS when the accelerator (or platform) is unavailable.
  • AES-GCM and AES-CTR utilities with a safe aesGcmEncryptAuto that generates a random 12-byte IV, optional nonce-reuse debug guard, and capability introspection via ESPCrypto::caps().
  • RSA/ECC signing + verification helpers (PKCS#1 v1.5 + ECDSA) that power HS256/RS256/ES256 JWT flows or stand-alone signatures.
  • CryptoKey + KeyHandle abstractions with MemoryKeyStore, NvsKeyStore, and LittleFsKeyStore for alias/versioned key rotation plus cached mbedTLS contexts to avoid repeated parsing.
  • Device-bound HKDF helper deriveDeviceKey(...) that derives stable per-device keys from an optional persistent NVS secret plus the chip fingerprint, mainly to avoid hard-coded symmetric keys rather than to provide hardware-backed key protection.
  • Buffer-friendly span overloads for SHA digests and AES-GCM encrypt/decrypt that write into caller-provided buffers to reduce heap churn on large payloads, plus streaming contexts (ShaCtx, HmacCtx, AesCtrStream, AesGcmCtx) for chunked workloads.
  • Nonce strategies for AES-GCM auto IVs: random 96-bit (default), counter+random hybrid, or boot-counter based with optional NVS persistence to avoid reuse under long-lived keys.
  • Modern lanes: ChaCha20-Poly1305 for CPUs without AES accel, X25519 ECDH helper, and ECDSA DER↔raw helpers to interop with JOSE stacks. (Ed25519/EdDSA stay capability-gated to platform support.)
  • HMAC/HKDF/PBKDF2 (SHA-256/384/512) building blocks with policy enforcement for PBKDF2 iteration counts; password hashing uses these primitives and constant-time verification.
  • Structured CryptoStatus + CryptoResult<T> with span-friendly overloads to reduce heap churn and keep error handling uniform; SecureBuffer/SecureString zeroize sensitive data on scope exit.
  • Full JWT builder/validator that uses ArduinoJson v7 JsonDocuments, fills iat/exp/nbf fields, enforces issuer/audience, and exposes both friendly errors and structured status codes.
  • Ready-to-flash example plus Unity tests under test/test_esp_crypto with NIST/RFC vectors for SHA, AES-GCM, HKDF, PBKDF2, JWT, and password hashing regressions.

Examples

  • examples/basic_hash_and_aes – SHA plus AES-GCM with auto IV/tag handling and structured status.
  • examples/jwt_and_password – HS256 JWT creation/verification and password hashing/verification.
  • examples/advanced_primitives – Capability/policy introspection, SecureBuffer/String, HMAC/HKDF/PBKDF2, AES-CTR streaming, and RSA/ECDSA signing flows.
  • examples/keys_and_streaming – Keystore usage, streaming SHA/AES-GCM, nonce strategies, and device-bound key derivation.
  • examples/bench_crypto – Tiny on-device timing loops for SHA and AES-GCM to gauge perf per board.
  • examples/jwks_rotation – JWKS verification with rotating kid values for HS256.

The basic AES example shows SHA and AES-GCM in one go:

#include<Arduino.h>
#include<ESPCrypto.h>
#include<vector>voidsetup() {
Serial.begin(115200);
std::vector<uint8_t> key(32, 0x01);
std::vector<uint8_t> plaintext = {'h', 'e', 'l', 'l', 'o'};
String digest = ESPCrypto::shaHex("esptoolkit");
auto gcm = ESPCrypto::aesGcmEncryptAuto(key, plaintext);
if (gcm.ok()) {
auto decrypted = ESPCrypto::aesGcmDecrypt(key, gcm.value.iv, gcm.value.ciphertext, gcm.value.tag);
(void)decrypted;
}
// Release ESPCrypto runtime caches/state before deep sleep or shutdown paths.ESPCrypto::deinit();
}
voidloop() {}

Run examples/basic_hash_and_aes via PlatformIO/Arduino to see the full output.

Lifecycle and Teardown

  • ESPCrypto is static-style, so there is no instance destructor to release global runtime state.
  • Call ESPCrypto::deinit() when your app no longer needs crypto helpers (for example before deep sleep, app shutdown, or full subsystem restart).
  • deinit() is safe before any crypto call and safe to call repeatedly.
  • Use ESPCrypto::isInitialized() to check whether runtime state (policy/caches/counters) is currently active.

Key management and device-bound helpers

Cache parsed keys, rotate aliases, and derive symmetric keys without shipping long-lived secrets in firmware:

#include<ESPCrypto.h>voidrotate_keys() {
MemoryKeyStore memory;
KeyHandle current{String("jwt_auth"), 2};
// Store a PEM private key and reload it as a cached CryptoKeyconstchar *pem = "-----BEGIN PRIVATE KEY-----...";
ESPCrypto::storeKey(memory, current, CryptoSpan<constuint8_t>(reinterpret_cast<constuint8_t *>(pem), strlen(pem)));
auto loaded = ESPCrypto::loadKey(memory, current, KeyFormat::Pem, KeyKind::Private);
if (loaded.ok()) {
auto sig = ESPCrypto::rsaSign(
loaded.value,
CryptoSpan<constuint8_t>(reinterpret_cast<constuint8_t *>("payload"), 7),
ShaVariant::SHA256
);
(void)sig;
}
// Derive a device-bound symmetric key using HKDF + NVS-backed seedauto derived = ESPCrypto::deriveDeviceKey("provisioning", CryptoSpan<constuint8_t>(), 32);
if (derived.ok()) {
// use derived.value as an AES or HMAC key without embedding long-term secrets
}
}

MemoryKeyStore keeps key material only in RAM for tests or ephemeral rotations. LittleFsKeyStore stores blobs on LittleFS when mounted, and NvsKeyStore persists blobs in NVS with whatever flash/NVS protection the device is configured for. None of these backends should be treated as a secure-element substitute.

API Highlights

  • CryptoResult<std::vector<uint8_t>> shaResult(...) / shaHex(...) – SHA256/384/512 with optional hardware preference (default on) and structured status codes.
  • CryptoResult<GcmMessage> aesGcmEncryptAuto(...) + aesGcmDecrypt(...) – 128/192/256-bit AES-GCM with random IVs, optional AAD, 16-byte tags, and policy-enforced IV length; aesCtrCrypt(...) covers stream-like CTR use cases.
  • CryptoResult<std::vector<uint8_t>> rsaSign/eccSign and rsaVerify/eccVerify – Wrap mbedTLS PK contexts while enforcing minimum key sizes unless allowLegacy is enabled.
  • CryptoKey helpers for RSA/ECC reuse parsed PK contexts; pair them with KeyHandle aliases in a KeyStore to rotate versions without reparsing PEM/DER.
  • CryptoResult<void> sha(...) and aesGcmEncrypt/Decrypt(...) span overloads – write digests/ciphertext/tag into caller-owned buffers to avoid heap allocations on large payloads.
  • Streaming helpers: ShaCtx/HmacCtx for incremental hashing/HMAC, AesCtrStream for chunked CTR flows, and AesGcmCtx for AAD + payload streaming with tag verification.
  • GcmNonceOptions lets you pick random, counter+random, or boot-counter IV strategies (with optional NVS persistence) when using aesGcmEncryptAuto(...).
  • JWT additions: JWK/JWKS verification helper, leeway support, multi-audience/typ enforcement, and DER↔raw ECDSA helpers to match JOSE encodings.
  • ChaCha20-Poly1305 encrypt/decrypt helpers and X25519 shared-secret derivation for devices where AES accel varies. XChaCha20-Poly1305 and Ed25519/EdDSA APIs currently return Unsupported until the toolchain provides those primitives.
  • CryptoResult<String> createJwtResult(...) / verifyJwtResult(...) – Build HS256/RS256/ES256 JWTs with auto iat/exp fields and get back structured status plus the friendly error string versions.
  • CryptoResult<std::vector<uint8_t>> hmac/hkdf/pbkdf2 and hashString/verifyString – HMAC/HKDF/PBKDF2 building blocks; password hashes stay in the $esphash$v1$cost$salt$hash envelope and compare in constant time.
  • CryptoCaps caps() and SecureBuffer/SecureString – Introspect hardware acceleration availability and zeroize sensitive buffers on scope exit.

JWT Helpers

JwtSignOptions lets you set issuer, subject, audience, expiresInSeconds, notBefore, issuedAt, and keyId. JwtVerifyOptions can enforce issuer/audience matches, require expiration, and accept externally supplied clocks (e.g., SNTP time). Header/payload data stays as ArduinoJson v7 JsonDocuments, so you can merge them with doc.set(...) or stream them over serial for debugging. Use createJwt/verifyJwt for friendly strings or createJwtResult/verifyJwtResult for structured status codes.

verifyJwtWithJwks consumes an in-memory JWKS (JsonDocument) and picks keys by kid, with support for leeway, multi-audience payloads, typ enforcement, and crit header allowlists. ECDSA raw/DER conversion helpers are available when interoping with JOSE stacks that send compact raw signatures.

Policy & Guardrails

  • CryptoPolicy (default: RSA ≥ 2048 bits, PBKDF2 iterations ≥ 1024, GCM IV ≥ 12 bytes) is readable via ESPCrypto::policy() and adjustable with setPolicy(...); set allowLegacy = true to opt into weaker parameters.
  • AES-GCM can enable debug nonce-reuse detection via ESPCRYPTO_ENABLE_NONCE_GUARD (tiny LRU cache keyed by IV + key fingerprint).
  • constantTimeEq performs content-constant-time comparison only when both inputs already have the same length; a length mismatch returns false immediately. SecureBuffer and SecureString zeroize owned memory on cleanup.

Security Posture

  • Constant-time coverage: constantTimeEq underpins password verification and HS256 JWT checks when compared buffers are the same length; it does not hide input length. Other primitives lean on ESP-IDF/mbedTLS implementations and should be treated as best-effort constant-time rather than hardened side-channel countermeasures.
  • Hardware acceleration: SHA, AES-CTR, and AES-GCM try the ESP hardware blocks first and fall back to mbedTLS software paths; ESPCrypto::caps() reports what is active at runtime. Random bytes come from esp_fill_random on-device and from std::random_device only for host builds/tests.
  • Best-effort hardening: password hashes stay in a structured envelope with policy-enforced PBKDF2 costs, AES-GCM enforces IV length and offers an optional nonce-reuse guard, and sensitive buffers zeroize on scope exit or failure paths.
  • Threat model: aimed at network-connected ESP32-class devices where attackers can send arbitrary inputs. It does not attempt to defend against physical capture, power/EM/fault-injection side channels, or secure element/key storage requirements; review your board’s secure boot/flash encryption story separately.

Password Hashing

hashString emits $esphash$v1$<cost>$<salt>$<hash> so you can persist passwords without storing secrets. Costs map to 2^cost PBKDF2 iterations (default 10 ⇒ 1024) and will auto-bump to the policy minimum iteration count unless allowLegacy is enabled. verifyString accepts any string in that envelope, decodes the salt/hash, replays PBKDF2, and compares in constant time.

Tests

Hardware exercises run via PlatformIO Unity tests under test/test_esp_crypto, including KATs for SHA-2, AES-GCM (with tag checks), HKDF, PBKDF2, JWT HS256 round-trips, and password hashing. Host-side CMake just stubs out tests (ESP-IDF primitives are unavailable when cross-compiling for CI).

Formatting Baseline

This repository follows the firmware formatting baseline from esptoolkit-template:

  • .clang-format is the source of truth for C/C++/INO layout.
  • .editorconfig enforces tabs (tab_width = 4), LF endings, and final newline.
  • Format all tracked firmware sources with bash scripts/format_cpp.sh.

License

MIT — see LICENSE.md.

ESPToolKit

About

ESPCrypto wraps the ESP32 hardware crypto blocks (SHA, AES-GCM/CTR, RSA/ECC) with guardrails, automatic fallbacks, and high-level helpers (JWTs, salted hashes)

Topics

Resources

Code of conduct

Stars

6 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Add copy buttons to all
 blocks\n(function() {\n function addCopyButtons() {\n document.querySelectorAll('pre code').forEach(function(codeBlock) {\n if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;\n codeBlock.parentElement.setAttribute('data-copy-added', 'true');\n \n var btn = document.createElement('button');\n btn.textContent = 'Copy';\n btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';\n btn.onmouseover = function() { this.style.opacity = '1'; };\n btn.onmouseout = function() { this.style.opacity = '0.7'; };\n btn.onclick = function() {\n navigator.clipboard.writeText(codeBlock.textContent).then(function() {\n btn.textContent = 'Copied!';\n setTimeout(function() { btn.textContent = 'Copy'; }, 1500);\n });\n };\n codeBlock.parentElement.style.position = 'relative';\n codeBlock.parentElement.appendChild(btn);\n });\n }\n \n addCopyButtons();\n \n // Re-run on dynamic content\n var observer = new MutationObserver(addCopyButtons);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Add Copy Buttons to Code Blocks");
}
} catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
})();
(function(){
try {
var __m = "github.com";
var __re = new RegExp('^' + "github\\.com" + '
Skip to content
This repository was archived by the owner on Aug 3, 2026. It is now read-only.

Repository files navigation

Warning

This repository is deprecated and no longer maintained.

Search for an equivalent library under the ZekStack organization at: ZekStack/repositories

ESPCrypto

ESPCrypto wraps the ESP32 hardware crypto blocks (SHA, AES-GCM/CTR, RSA/ECC) with guardrails, automatic fallbacks, and high-level helpers (JWTs, salted hashes) that work in both ESP-IDF and Arduino builds.

CI / Release / License

CIReleaseLicense: MIT

Toolchain Compatibility

  • GitHub Actions builds against the ESP32 Arduino core 3.3.3 via Espressif's board manager URL (IDF 5.x generation) and caches the toolchains to keep PlatformIO/Arduino builds in sync for esp32, esp32-s3, esp32-c3, and esp32-p4 boards.
  • Runtime code gates the mbedTLS 2.x (ESP-IDF 4.x) and 3.x (ESP-IDF 5.x) API differences—including the ESP AES-GCM alt streaming signatures—so PlatformIO/Arduino builds succeed regardless of which ESP-IDF revision a board package ships.
  • Device fingerprinting prefers esp_read_mac from esp_mac.h when present and falls back to esp_efuse_mac_get_default, so Arduino/PlatformIO board packages that dropped esp_efuse_mac.h still build.

Features

  • SHA256/384/512 helpers that try the ESP parallel SHA engine first and fall back to mbedTLS when the accelerator (or platform) is unavailable.
  • AES-GCM and AES-CTR utilities with a safe aesGcmEncryptAuto that generates a random 12-byte IV, optional nonce-reuse debug guard, and capability introspection via ESPCrypto::caps().
  • RSA/ECC signing + verification helpers (PKCS#1 v1.5 + ECDSA) that power HS256/RS256/ES256 JWT flows or stand-alone signatures.
  • CryptoKey + KeyHandle abstractions with MemoryKeyStore, NvsKeyStore, and LittleFsKeyStore for alias/versioned key rotation plus cached mbedTLS contexts to avoid repeated parsing.
  • Device-bound HKDF helper deriveDeviceKey(...) that derives stable per-device keys from an optional persistent NVS secret plus the chip fingerprint, mainly to avoid hard-coded symmetric keys rather than to provide hardware-backed key protection.
  • Buffer-friendly span overloads for SHA digests and AES-GCM encrypt/decrypt that write into caller-provided buffers to reduce heap churn on large payloads, plus streaming contexts (ShaCtx, HmacCtx, AesCtrStream, AesGcmCtx) for chunked workloads.
  • Nonce strategies for AES-GCM auto IVs: random 96-bit (default), counter+random hybrid, or boot-counter based with optional NVS persistence to avoid reuse under long-lived keys.
  • Modern lanes: ChaCha20-Poly1305 for CPUs without AES accel, X25519 ECDH helper, and ECDSA DER↔raw helpers to interop with JOSE stacks. (Ed25519/EdDSA stay capability-gated to platform support.)
  • HMAC/HKDF/PBKDF2 (SHA-256/384/512) building blocks with policy enforcement for PBKDF2 iteration counts; password hashing uses these primitives and constant-time verification.
  • Structured CryptoStatus + CryptoResult<T> with span-friendly overloads to reduce heap churn and keep error handling uniform; SecureBuffer/SecureString zeroize sensitive data on scope exit.
  • Full JWT builder/validator that uses ArduinoJson v7 JsonDocuments, fills iat/exp/nbf fields, enforces issuer/audience, and exposes both friendly errors and structured status codes.
  • Ready-to-flash example plus Unity tests under test/test_esp_crypto with NIST/RFC vectors for SHA, AES-GCM, HKDF, PBKDF2, JWT, and password hashing regressions.

Examples

  • examples/basic_hash_and_aes – SHA plus AES-GCM with auto IV/tag handling and structured status.
  • examples/jwt_and_password – HS256 JWT creation/verification and password hashing/verification.
  • examples/advanced_primitives – Capability/policy introspection, SecureBuffer/String, HMAC/HKDF/PBKDF2, AES-CTR streaming, and RSA/ECDSA signing flows.
  • examples/keys_and_streaming – Keystore usage, streaming SHA/AES-GCM, nonce strategies, and device-bound key derivation.
  • examples/bench_crypto – Tiny on-device timing loops for SHA and AES-GCM to gauge perf per board.
  • examples/jwks_rotation – JWKS verification with rotating kid values for HS256.

The basic AES example shows SHA and AES-GCM in one go:

#include<Arduino.h>
#include<ESPCrypto.h>
#include<vector>voidsetup() {
Serial.begin(115200);
std::vector<uint8_t> key(32, 0x01);
std::vector<uint8_t> plaintext = {'h', 'e', 'l', 'l', 'o'};
String digest = ESPCrypto::shaHex("esptoolkit");
auto gcm = ESPCrypto::aesGcmEncryptAuto(key, plaintext);
if (gcm.ok()) {
auto decrypted = ESPCrypto::aesGcmDecrypt(key, gcm.value.iv, gcm.value.ciphertext, gcm.value.tag);
(void)decrypted;
}
// Release ESPCrypto runtime caches/state before deep sleep or shutdown paths.ESPCrypto::deinit();
}
voidloop() {}

Run examples/basic_hash_and_aes via PlatformIO/Arduino to see the full output.

Lifecycle and Teardown

  • ESPCrypto is static-style, so there is no instance destructor to release global runtime state.
  • Call ESPCrypto::deinit() when your app no longer needs crypto helpers (for example before deep sleep, app shutdown, or full subsystem restart).
  • deinit() is safe before any crypto call and safe to call repeatedly.
  • Use ESPCrypto::isInitialized() to check whether runtime state (policy/caches/counters) is currently active.

Key management and device-bound helpers

Cache parsed keys, rotate aliases, and derive symmetric keys without shipping long-lived secrets in firmware:

#include<ESPCrypto.h>voidrotate_keys() {
MemoryKeyStore memory;
KeyHandle current{String("jwt_auth"), 2};
// Store a PEM private key and reload it as a cached CryptoKeyconstchar *pem = "-----BEGIN PRIVATE KEY-----...";
ESPCrypto::storeKey(memory, current, CryptoSpan<constuint8_t>(reinterpret_cast<constuint8_t *>(pem), strlen(pem)));
auto loaded = ESPCrypto::loadKey(memory, current, KeyFormat::Pem, KeyKind::Private);
if (loaded.ok()) {
auto sig = ESPCrypto::rsaSign(
loaded.value,
CryptoSpan<constuint8_t>(reinterpret_cast<constuint8_t *>("payload"), 7),
ShaVariant::SHA256
);
(void)sig;
}
// Derive a device-bound symmetric key using HKDF + NVS-backed seedauto derived = ESPCrypto::deriveDeviceKey("provisioning", CryptoSpan<constuint8_t>(), 32);
if (derived.ok()) {
// use derived.value as an AES or HMAC key without embedding long-term secrets
}
}

MemoryKeyStore keeps key material only in RAM for tests or ephemeral rotations. LittleFsKeyStore stores blobs on LittleFS when mounted, and NvsKeyStore persists blobs in NVS with whatever flash/NVS protection the device is configured for. None of these backends should be treated as a secure-element substitute.

API Highlights

  • CryptoResult<std::vector<uint8_t>> shaResult(...) / shaHex(...) – SHA256/384/512 with optional hardware preference (default on) and structured status codes.
  • CryptoResult<GcmMessage> aesGcmEncryptAuto(...) + aesGcmDecrypt(...) – 128/192/256-bit AES-GCM with random IVs, optional AAD, 16-byte tags, and policy-enforced IV length; aesCtrCrypt(...) covers stream-like CTR use cases.
  • CryptoResult<std::vector<uint8_t>> rsaSign/eccSign and rsaVerify/eccVerify – Wrap mbedTLS PK contexts while enforcing minimum key sizes unless allowLegacy is enabled.
  • CryptoKey helpers for RSA/ECC reuse parsed PK contexts; pair them with KeyHandle aliases in a KeyStore to rotate versions without reparsing PEM/DER.
  • CryptoResult<void> sha(...) and aesGcmEncrypt/Decrypt(...) span overloads – write digests/ciphertext/tag into caller-owned buffers to avoid heap allocations on large payloads.
  • Streaming helpers: ShaCtx/HmacCtx for incremental hashing/HMAC, AesCtrStream for chunked CTR flows, and AesGcmCtx for AAD + payload streaming with tag verification.
  • GcmNonceOptions lets you pick random, counter+random, or boot-counter IV strategies (with optional NVS persistence) when using aesGcmEncryptAuto(...).
  • JWT additions: JWK/JWKS verification helper, leeway support, multi-audience/typ enforcement, and DER↔raw ECDSA helpers to match JOSE encodings.
  • ChaCha20-Poly1305 encrypt/decrypt helpers and X25519 shared-secret derivation for devices where AES accel varies. XChaCha20-Poly1305 and Ed25519/EdDSA APIs currently return Unsupported until the toolchain provides those primitives.
  • CryptoResult<String> createJwtResult(...) / verifyJwtResult(...) – Build HS256/RS256/ES256 JWTs with auto iat/exp fields and get back structured status plus the friendly error string versions.
  • CryptoResult<std::vector<uint8_t>> hmac/hkdf/pbkdf2 and hashString/verifyString – HMAC/HKDF/PBKDF2 building blocks; password hashes stay in the $esphash$v1$cost$salt$hash envelope and compare in constant time.
  • CryptoCaps caps() and SecureBuffer/SecureString – Introspect hardware acceleration availability and zeroize sensitive buffers on scope exit.

JWT Helpers

JwtSignOptions lets you set issuer, subject, audience, expiresInSeconds, notBefore, issuedAt, and keyId. JwtVerifyOptions can enforce issuer/audience matches, require expiration, and accept externally supplied clocks (e.g., SNTP time). Header/payload data stays as ArduinoJson v7 JsonDocuments, so you can merge them with doc.set(...) or stream them over serial for debugging. Use createJwt/verifyJwt for friendly strings or createJwtResult/verifyJwtResult for structured status codes.

verifyJwtWithJwks consumes an in-memory JWKS (JsonDocument) and picks keys by kid, with support for leeway, multi-audience payloads, typ enforcement, and crit header allowlists. ECDSA raw/DER conversion helpers are available when interoping with JOSE stacks that send compact raw signatures.

Policy & Guardrails

  • CryptoPolicy (default: RSA ≥ 2048 bits, PBKDF2 iterations ≥ 1024, GCM IV ≥ 12 bytes) is readable via ESPCrypto::policy() and adjustable with setPolicy(...); set allowLegacy = true to opt into weaker parameters.
  • AES-GCM can enable debug nonce-reuse detection via ESPCRYPTO_ENABLE_NONCE_GUARD (tiny LRU cache keyed by IV + key fingerprint).
  • constantTimeEq performs content-constant-time comparison only when both inputs already have the same length; a length mismatch returns false immediately. SecureBuffer and SecureString zeroize owned memory on cleanup.

Security Posture

  • Constant-time coverage: constantTimeEq underpins password verification and HS256 JWT checks when compared buffers are the same length; it does not hide input length. Other primitives lean on ESP-IDF/mbedTLS implementations and should be treated as best-effort constant-time rather than hardened side-channel countermeasures.
  • Hardware acceleration: SHA, AES-CTR, and AES-GCM try the ESP hardware blocks first and fall back to mbedTLS software paths; ESPCrypto::caps() reports what is active at runtime. Random bytes come from esp_fill_random on-device and from std::random_device only for host builds/tests.
  • Best-effort hardening: password hashes stay in a structured envelope with policy-enforced PBKDF2 costs, AES-GCM enforces IV length and offers an optional nonce-reuse guard, and sensitive buffers zeroize on scope exit or failure paths.
  • Threat model: aimed at network-connected ESP32-class devices where attackers can send arbitrary inputs. It does not attempt to defend against physical capture, power/EM/fault-injection side channels, or secure element/key storage requirements; review your board’s secure boot/flash encryption story separately.

Password Hashing

hashString emits $esphash$v1$<cost>$<salt>$<hash> so you can persist passwords without storing secrets. Costs map to 2^cost PBKDF2 iterations (default 10 ⇒ 1024) and will auto-bump to the policy minimum iteration count unless allowLegacy is enabled. verifyString accepts any string in that envelope, decodes the salt/hash, replays PBKDF2, and compares in constant time.

Tests

Hardware exercises run via PlatformIO Unity tests under test/test_esp_crypto, including KATs for SHA-2, AES-GCM (with tag checks), HKDF, PBKDF2, JWT HS256 round-trips, and password hashing. Host-side CMake just stubs out tests (ESP-IDF primitives are unavailable when cross-compiling for CI).

Formatting Baseline

This repository follows the firmware formatting baseline from esptoolkit-template:

  • .clang-format is the source of truth for C/C++/INO layout.
  • .editorconfig enforces tabs (tab_width = 4), LF endings, and final newline.
  • Format all tracked firmware sources with bash scripts/format_cpp.sh.

License

MIT — see LICENSE.md.

ESPToolKit

About

ESPCrypto wraps the ESP32 hardware crypto blocks (SHA, AES-GCM/CTR, RSA/ECC) with guardrails, automatic fallbacks, and high-level helpers (JWTs, salted hashes)

Topics

Resources

Code of conduct

Stars

6 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Force GitHub README to respect dark mode\n(function() {\n var style = document.createElement('style');\n style.textContent = '\n .markdown-body {\n color-scheme: dark light;\n }\n .markdown-body pre { background: #161b22 !important; }\n .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; }\n .markdown-body table th, .markdown-body table td { border-color: #30363d !important; }\n .markdown-body img { background: #0d1117; }\n .markdown-body blockquote { border-left-color: #8b949e; }\n .markdown-body hr { border-color: #30363d; }\n ';\n document.head.appendChild(style);\n})();", "GitHub Dark Mode README Fix"); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content
This repository was archived by the owner on Aug 3, 2026. It is now read-only.

Repository files navigation

Warning

This repository is deprecated and no longer maintained.

Search for an equivalent library under the ZekStack organization at: ZekStack/repositories

ESPCrypto

ESPCrypto wraps the ESP32 hardware crypto blocks (SHA, AES-GCM/CTR, RSA/ECC) with guardrails, automatic fallbacks, and high-level helpers (JWTs, salted hashes) that work in both ESP-IDF and Arduino builds.

CI / Release / License

CIReleaseLicense: MIT

Toolchain Compatibility

  • GitHub Actions builds against the ESP32 Arduino core 3.3.3 via Espressif's board manager URL (IDF 5.x generation) and caches the toolchains to keep PlatformIO/Arduino builds in sync for esp32, esp32-s3, esp32-c3, and esp32-p4 boards.
  • Runtime code gates the mbedTLS 2.x (ESP-IDF 4.x) and 3.x (ESP-IDF 5.x) API differences—including the ESP AES-GCM alt streaming signatures—so PlatformIO/Arduino builds succeed regardless of which ESP-IDF revision a board package ships.
  • Device fingerprinting prefers esp_read_mac from esp_mac.h when present and falls back to esp_efuse_mac_get_default, so Arduino/PlatformIO board packages that dropped esp_efuse_mac.h still build.

Features

  • SHA256/384/512 helpers that try the ESP parallel SHA engine first and fall back to mbedTLS when the accelerator (or platform) is unavailable.
  • AES-GCM and AES-CTR utilities with a safe aesGcmEncryptAuto that generates a random 12-byte IV, optional nonce-reuse debug guard, and capability introspection via ESPCrypto::caps().
  • RSA/ECC signing + verification helpers (PKCS#1 v1.5 + ECDSA) that power HS256/RS256/ES256 JWT flows or stand-alone signatures.
  • CryptoKey + KeyHandle abstractions with MemoryKeyStore, NvsKeyStore, and LittleFsKeyStore for alias/versioned key rotation plus cached mbedTLS contexts to avoid repeated parsing.
  • Device-bound HKDF helper deriveDeviceKey(...) that derives stable per-device keys from an optional persistent NVS secret plus the chip fingerprint, mainly to avoid hard-coded symmetric keys rather than to provide hardware-backed key protection.
  • Buffer-friendly span overloads for SHA digests and AES-GCM encrypt/decrypt that write into caller-provided buffers to reduce heap churn on large payloads, plus streaming contexts (ShaCtx, HmacCtx, AesCtrStream, AesGcmCtx) for chunked workloads.
  • Nonce strategies for AES-GCM auto IVs: random 96-bit (default), counter+random hybrid, or boot-counter based with optional NVS persistence to avoid reuse under long-lived keys.
  • Modern lanes: ChaCha20-Poly1305 for CPUs without AES accel, X25519 ECDH helper, and ECDSA DER↔raw helpers to interop with JOSE stacks. (Ed25519/EdDSA stay capability-gated to platform support.)
  • HMAC/HKDF/PBKDF2 (SHA-256/384/512) building blocks with policy enforcement for PBKDF2 iteration counts; password hashing uses these primitives and constant-time verification.
  • Structured CryptoStatus + CryptoResult<T> with span-friendly overloads to reduce heap churn and keep error handling uniform; SecureBuffer/SecureString zeroize sensitive data on scope exit.
  • Full JWT builder/validator that uses ArduinoJson v7 JsonDocuments, fills iat/exp/nbf fields, enforces issuer/audience, and exposes both friendly errors and structured status codes.
  • Ready-to-flash example plus Unity tests under test/test_esp_crypto with NIST/RFC vectors for SHA, AES-GCM, HKDF, PBKDF2, JWT, and password hashing regressions.

Examples

  • examples/basic_hash_and_aes – SHA plus AES-GCM with auto IV/tag handling and structured status.
  • examples/jwt_and_password – HS256 JWT creation/verification and password hashing/verification.
  • examples/advanced_primitives – Capability/policy introspection, SecureBuffer/String, HMAC/HKDF/PBKDF2, AES-CTR streaming, and RSA/ECDSA signing flows.
  • examples/keys_and_streaming – Keystore usage, streaming SHA/AES-GCM, nonce strategies, and device-bound key derivation.
  • examples/bench_crypto – Tiny on-device timing loops for SHA and AES-GCM to gauge perf per board.
  • examples/jwks_rotation – JWKS verification with rotating kid values for HS256.

The basic AES example shows SHA and AES-GCM in one go:

#include<Arduino.h>
#include<ESPCrypto.h>
#include<vector>voidsetup() {
Serial.begin(115200);
std::vector<uint8_t> key(32, 0x01);
std::vector<uint8_t> plaintext = {'h', 'e', 'l', 'l', 'o'};
String digest = ESPCrypto::shaHex("esptoolkit");
auto gcm = ESPCrypto::aesGcmEncryptAuto(key, plaintext);
if (gcm.ok()) {
auto decrypted = ESPCrypto::aesGcmDecrypt(key, gcm.value.iv, gcm.value.ciphertext, gcm.value.tag);
(void)decrypted;
}
// Release ESPCrypto runtime caches/state before deep sleep or shutdown paths.ESPCrypto::deinit();
}
voidloop() {}

Run examples/basic_hash_and_aes via PlatformIO/Arduino to see the full output.

Lifecycle and Teardown

  • ESPCrypto is static-style, so there is no instance destructor to release global runtime state.
  • Call ESPCrypto::deinit() when your app no longer needs crypto helpers (for example before deep sleep, app shutdown, or full subsystem restart).
  • deinit() is safe before any crypto call and safe to call repeatedly.
  • Use ESPCrypto::isInitialized() to check whether runtime state (policy/caches/counters) is currently active.

Key management and device-bound helpers

Cache parsed keys, rotate aliases, and derive symmetric keys without shipping long-lived secrets in firmware:

#include<ESPCrypto.h>voidrotate_keys() {
MemoryKeyStore memory;
KeyHandle current{String("jwt_auth"), 2};
// Store a PEM private key and reload it as a cached CryptoKeyconstchar *pem = "-----BEGIN PRIVATE KEY-----...";
ESPCrypto::storeKey(memory, current, CryptoSpan<constuint8_t>(reinterpret_cast<constuint8_t *>(pem), strlen(pem)));
auto loaded = ESPCrypto::loadKey(memory, current, KeyFormat::Pem, KeyKind::Private);
if (loaded.ok()) {
auto sig = ESPCrypto::rsaSign(
loaded.value,
CryptoSpan<constuint8_t>(reinterpret_cast<constuint8_t *>("payload"), 7),
ShaVariant::SHA256
);
(void)sig;
}
// Derive a device-bound symmetric key using HKDF + NVS-backed seedauto derived = ESPCrypto::deriveDeviceKey("provisioning", CryptoSpan<constuint8_t>(), 32);
if (derived.ok()) {
// use derived.value as an AES or HMAC key without embedding long-term secrets
}
}

MemoryKeyStore keeps key material only in RAM for tests or ephemeral rotations. LittleFsKeyStore stores blobs on LittleFS when mounted, and NvsKeyStore persists blobs in NVS with whatever flash/NVS protection the device is configured for. None of these backends should be treated as a secure-element substitute.

API Highlights

  • CryptoResult<std::vector<uint8_t>> shaResult(...) / shaHex(...) – SHA256/384/512 with optional hardware preference (default on) and structured status codes.
  • CryptoResult<GcmMessage> aesGcmEncryptAuto(...) + aesGcmDecrypt(...) – 128/192/256-bit AES-GCM with random IVs, optional AAD, 16-byte tags, and policy-enforced IV length; aesCtrCrypt(...) covers stream-like CTR use cases.
  • CryptoResult<std::vector<uint8_t>> rsaSign/eccSign and rsaVerify/eccVerify – Wrap mbedTLS PK contexts while enforcing minimum key sizes unless allowLegacy is enabled.
  • CryptoKey helpers for RSA/ECC reuse parsed PK contexts; pair them with KeyHandle aliases in a KeyStore to rotate versions without reparsing PEM/DER.
  • CryptoResult<void> sha(...) and aesGcmEncrypt/Decrypt(...) span overloads – write digests/ciphertext/tag into caller-owned buffers to avoid heap allocations on large payloads.
  • Streaming helpers: ShaCtx/HmacCtx for incremental hashing/HMAC, AesCtrStream for chunked CTR flows, and AesGcmCtx for AAD + payload streaming with tag verification.
  • GcmNonceOptions lets you pick random, counter+random, or boot-counter IV strategies (with optional NVS persistence) when using aesGcmEncryptAuto(...).
  • JWT additions: JWK/JWKS verification helper, leeway support, multi-audience/typ enforcement, and DER↔raw ECDSA helpers to match JOSE encodings.
  • ChaCha20-Poly1305 encrypt/decrypt helpers and X25519 shared-secret derivation for devices where AES accel varies. XChaCha20-Poly1305 and Ed25519/EdDSA APIs currently return Unsupported until the toolchain provides those primitives.
  • CryptoResult<String> createJwtResult(...) / verifyJwtResult(...) – Build HS256/RS256/ES256 JWTs with auto iat/exp fields and get back structured status plus the friendly error string versions.
  • CryptoResult<std::vector<uint8_t>> hmac/hkdf/pbkdf2 and hashString/verifyString – HMAC/HKDF/PBKDF2 building blocks; password hashes stay in the $esphash$v1$cost$salt$hash envelope and compare in constant time.
  • CryptoCaps caps() and SecureBuffer/SecureString – Introspect hardware acceleration availability and zeroize sensitive buffers on scope exit.

JWT Helpers

JwtSignOptions lets you set issuer, subject, audience, expiresInSeconds, notBefore, issuedAt, and keyId. JwtVerifyOptions can enforce issuer/audience matches, require expiration, and accept externally supplied clocks (e.g., SNTP time). Header/payload data stays as ArduinoJson v7 JsonDocuments, so you can merge them with doc.set(...) or stream them over serial for debugging. Use createJwt/verifyJwt for friendly strings or createJwtResult/verifyJwtResult for structured status codes.

verifyJwtWithJwks consumes an in-memory JWKS (JsonDocument) and picks keys by kid, with support for leeway, multi-audience payloads, typ enforcement, and crit header allowlists. ECDSA raw/DER conversion helpers are available when interoping with JOSE stacks that send compact raw signatures.

Policy & Guardrails

  • CryptoPolicy (default: RSA ≥ 2048 bits, PBKDF2 iterations ≥ 1024, GCM IV ≥ 12 bytes) is readable via ESPCrypto::policy() and adjustable with setPolicy(...); set allowLegacy = true to opt into weaker parameters.
  • AES-GCM can enable debug nonce-reuse detection via ESPCRYPTO_ENABLE_NONCE_GUARD (tiny LRU cache keyed by IV + key fingerprint).
  • constantTimeEq performs content-constant-time comparison only when both inputs already have the same length; a length mismatch returns false immediately. SecureBuffer and SecureString zeroize owned memory on cleanup.

Security Posture

  • Constant-time coverage: constantTimeEq underpins password verification and HS256 JWT checks when compared buffers are the same length; it does not hide input length. Other primitives lean on ESP-IDF/mbedTLS implementations and should be treated as best-effort constant-time rather than hardened side-channel countermeasures.
  • Hardware acceleration: SHA, AES-CTR, and AES-GCM try the ESP hardware blocks first and fall back to mbedTLS software paths; ESPCrypto::caps() reports what is active at runtime. Random bytes come from esp_fill_random on-device and from std::random_device only for host builds/tests.
  • Best-effort hardening: password hashes stay in a structured envelope with policy-enforced PBKDF2 costs, AES-GCM enforces IV length and offers an optional nonce-reuse guard, and sensitive buffers zeroize on scope exit or failure paths.
  • Threat model: aimed at network-connected ESP32-class devices where attackers can send arbitrary inputs. It does not attempt to defend against physical capture, power/EM/fault-injection side channels, or secure element/key storage requirements; review your board’s secure boot/flash encryption story separately.

Password Hashing

hashString emits $esphash$v1$<cost>$<salt>$<hash> so you can persist passwords without storing secrets. Costs map to 2^cost PBKDF2 iterations (default 10 ⇒ 1024) and will auto-bump to the policy minimum iteration count unless allowLegacy is enabled. verifyString accepts any string in that envelope, decodes the salt/hash, replays PBKDF2, and compares in constant time.

Tests

Hardware exercises run via PlatformIO Unity tests under test/test_esp_crypto, including KATs for SHA-2, AES-GCM (with tag checks), HKDF, PBKDF2, JWT HS256 round-trips, and password hashing. Host-side CMake just stubs out tests (ESP-IDF primitives are unavailable when cross-compiling for CI).

Formatting Baseline

This repository follows the firmware formatting baseline from esptoolkit-template:

  • .clang-format is the source of truth for C/C++/INO layout.
  • .editorconfig enforces tabs (tab_width = 4), LF endings, and final newline.
  • Format all tracked firmware sources with bash scripts/format_cpp.sh.

License

MIT — see LICENSE.md.

ESPToolKit

About

ESPCrypto wraps the ESP32 hardware crypto blocks (SHA, AES-GCM/CTR, RSA/ECC) with guardrails, automatic fallbacks, and high-level helpers (JWTs, salted hashes)

Topics

Resources

Code of conduct

Stars

6 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Highlight search terms from Google/DuckDuckGo/Bing referrer\n(function() {\n var ref = document.referrer;\n var terms = [];\n \n if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) {\n var url = new URL(ref);\n var q = url.searchParams.get('q') || url.searchParams.get('p');\n if (q) {\n terms = q.split(/\\s+/).filter(function(t) { return t.length > 2; });\n }\n }\n \n if (terms.length === 0) return;\n \n var style = document.createElement('style');\n style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }';\n document.head.appendChild(style);\n \n function highlight(node) {\n if (node.nodeType === 3) { // text node\n var text = node.textContent;\n var found = false;\n terms.forEach(function(term) {\n var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\') + ')', 'gi');\n if (regex.test(text)) {\n found = true;\n var frag = document.createDocumentFragment();\n var parts = text.split(regex);\n parts.forEach(function(part, i) {\n if (i % 2 === 0) {\n frag.appendChild(document.createTextNode(part));\n } else {\n var span = document.createElement('span');\n span.className = 'userscript-highlight';\n span.textContent = part;\n frag.appendChild(span);\n }\n });\n node.parentNode.replaceChild(frag, node);\n }\n });\n } else if (node.nodeType === 1 && node.childNodes) { // element\n var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT'];\n if (!skipTags.includes(node.tagName)) {\n Array.from(node.childNodes).forEach(highlight);\n }\n }\n }\n \n highlight(document.body);\n \n // Re-highlight on dynamic content\n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1 || node.nodeType === 3) highlight(node);\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Highlight Search Terms"); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content
This repository was archived by the owner on Aug 3, 2026. It is now read-only.

Repository files navigation

Warning

This repository is deprecated and no longer maintained.

Search for an equivalent library under the ZekStack organization at: ZekStack/repositories

ESPCrypto

ESPCrypto wraps the ESP32 hardware crypto blocks (SHA, AES-GCM/CTR, RSA/ECC) with guardrails, automatic fallbacks, and high-level helpers (JWTs, salted hashes) that work in both ESP-IDF and Arduino builds.

CI / Release / License

CIReleaseLicense: MIT

Toolchain Compatibility

  • GitHub Actions builds against the ESP32 Arduino core 3.3.3 via Espressif's board manager URL (IDF 5.x generation) and caches the toolchains to keep PlatformIO/Arduino builds in sync for esp32, esp32-s3, esp32-c3, and esp32-p4 boards.
  • Runtime code gates the mbedTLS 2.x (ESP-IDF 4.x) and 3.x (ESP-IDF 5.x) API differences—including the ESP AES-GCM alt streaming signatures—so PlatformIO/Arduino builds succeed regardless of which ESP-IDF revision a board package ships.
  • Device fingerprinting prefers esp_read_mac from esp_mac.h when present and falls back to esp_efuse_mac_get_default, so Arduino/PlatformIO board packages that dropped esp_efuse_mac.h still build.

Features

  • SHA256/384/512 helpers that try the ESP parallel SHA engine first and fall back to mbedTLS when the accelerator (or platform) is unavailable.
  • AES-GCM and AES-CTR utilities with a safe aesGcmEncryptAuto that generates a random 12-byte IV, optional nonce-reuse debug guard, and capability introspection via ESPCrypto::caps().
  • RSA/ECC signing + verification helpers (PKCS#1 v1.5 + ECDSA) that power HS256/RS256/ES256 JWT flows or stand-alone signatures.
  • CryptoKey + KeyHandle abstractions with MemoryKeyStore, NvsKeyStore, and LittleFsKeyStore for alias/versioned key rotation plus cached mbedTLS contexts to avoid repeated parsing.
  • Device-bound HKDF helper deriveDeviceKey(...) that derives stable per-device keys from an optional persistent NVS secret plus the chip fingerprint, mainly to avoid hard-coded symmetric keys rather than to provide hardware-backed key protection.
  • Buffer-friendly span overloads for SHA digests and AES-GCM encrypt/decrypt that write into caller-provided buffers to reduce heap churn on large payloads, plus streaming contexts (ShaCtx, HmacCtx, AesCtrStream, AesGcmCtx) for chunked workloads.
  • Nonce strategies for AES-GCM auto IVs: random 96-bit (default), counter+random hybrid, or boot-counter based with optional NVS persistence to avoid reuse under long-lived keys.
  • Modern lanes: ChaCha20-Poly1305 for CPUs without AES accel, X25519 ECDH helper, and ECDSA DER↔raw helpers to interop with JOSE stacks. (Ed25519/EdDSA stay capability-gated to platform support.)
  • HMAC/HKDF/PBKDF2 (SHA-256/384/512) building blocks with policy enforcement for PBKDF2 iteration counts; password hashing uses these primitives and constant-time verification.
  • Structured CryptoStatus + CryptoResult<T> with span-friendly overloads to reduce heap churn and keep error handling uniform; SecureBuffer/SecureString zeroize sensitive data on scope exit.
  • Full JWT builder/validator that uses ArduinoJson v7 JsonDocuments, fills iat/exp/nbf fields, enforces issuer/audience, and exposes both friendly errors and structured status codes.
  • Ready-to-flash example plus Unity tests under test/test_esp_crypto with NIST/RFC vectors for SHA, AES-GCM, HKDF, PBKDF2, JWT, and password hashing regressions.

Examples

  • examples/basic_hash_and_aes – SHA plus AES-GCM with auto IV/tag handling and structured status.
  • examples/jwt_and_password – HS256 JWT creation/verification and password hashing/verification.
  • examples/advanced_primitives – Capability/policy introspection, SecureBuffer/String, HMAC/HKDF/PBKDF2, AES-CTR streaming, and RSA/ECDSA signing flows.
  • examples/keys_and_streaming – Keystore usage, streaming SHA/AES-GCM, nonce strategies, and device-bound key derivation.
  • examples/bench_crypto – Tiny on-device timing loops for SHA and AES-GCM to gauge perf per board.
  • examples/jwks_rotation – JWKS verification with rotating kid values for HS256.

The basic AES example shows SHA and AES-GCM in one go:

#include<Arduino.h>
#include<ESPCrypto.h>
#include<vector>voidsetup() {
Serial.begin(115200);
std::vector<uint8_t> key(32, 0x01);
std::vector<uint8_t> plaintext = {'h', 'e', 'l', 'l', 'o'};
String digest = ESPCrypto::shaHex("esptoolkit");
auto gcm = ESPCrypto::aesGcmEncryptAuto(key, plaintext);
if (gcm.ok()) {
auto decrypted = ESPCrypto::aesGcmDecrypt(key, gcm.value.iv, gcm.value.ciphertext, gcm.value.tag);
(void)decrypted;
}
// Release ESPCrypto runtime caches/state before deep sleep or shutdown paths.ESPCrypto::deinit();
}
voidloop() {}

Run examples/basic_hash_and_aes via PlatformIO/Arduino to see the full output.

Lifecycle and Teardown

  • ESPCrypto is static-style, so there is no instance destructor to release global runtime state.
  • Call ESPCrypto::deinit() when your app no longer needs crypto helpers (for example before deep sleep, app shutdown, or full subsystem restart).
  • deinit() is safe before any crypto call and safe to call repeatedly.
  • Use ESPCrypto::isInitialized() to check whether runtime state (policy/caches/counters) is currently active.

Key management and device-bound helpers

Cache parsed keys, rotate aliases, and derive symmetric keys without shipping long-lived secrets in firmware:

#include<ESPCrypto.h>voidrotate_keys() {
MemoryKeyStore memory;
KeyHandle current{String("jwt_auth"), 2};
// Store a PEM private key and reload it as a cached CryptoKeyconstchar *pem = "-----BEGIN PRIVATE KEY-----...";
ESPCrypto::storeKey(memory, current, CryptoSpan<constuint8_t>(reinterpret_cast<constuint8_t *>(pem), strlen(pem)));
auto loaded = ESPCrypto::loadKey(memory, current, KeyFormat::Pem, KeyKind::Private);
if (loaded.ok()) {
auto sig = ESPCrypto::rsaSign(
loaded.value,
CryptoSpan<constuint8_t>(reinterpret_cast<constuint8_t *>("payload"), 7),
ShaVariant::SHA256
);
(void)sig;
}
// Derive a device-bound symmetric key using HKDF + NVS-backed seedauto derived = ESPCrypto::deriveDeviceKey("provisioning", CryptoSpan<constuint8_t>(), 32);
if (derived.ok()) {
// use derived.value as an AES or HMAC key without embedding long-term secrets
}
}

MemoryKeyStore keeps key material only in RAM for tests or ephemeral rotations. LittleFsKeyStore stores blobs on LittleFS when mounted, and NvsKeyStore persists blobs in NVS with whatever flash/NVS protection the device is configured for. None of these backends should be treated as a secure-element substitute.

API Highlights

  • CryptoResult<std::vector<uint8_t>> shaResult(...) / shaHex(...) – SHA256/384/512 with optional hardware preference (default on) and structured status codes.
  • CryptoResult<GcmMessage> aesGcmEncryptAuto(...) + aesGcmDecrypt(...) – 128/192/256-bit AES-GCM with random IVs, optional AAD, 16-byte tags, and policy-enforced IV length; aesCtrCrypt(...) covers stream-like CTR use cases.
  • CryptoResult<std::vector<uint8_t>> rsaSign/eccSign and rsaVerify/eccVerify – Wrap mbedTLS PK contexts while enforcing minimum key sizes unless allowLegacy is enabled.
  • CryptoKey helpers for RSA/ECC reuse parsed PK contexts; pair them with KeyHandle aliases in a KeyStore to rotate versions without reparsing PEM/DER.
  • CryptoResult<void> sha(...) and aesGcmEncrypt/Decrypt(...) span overloads – write digests/ciphertext/tag into caller-owned buffers to avoid heap allocations on large payloads.
  • Streaming helpers: ShaCtx/HmacCtx for incremental hashing/HMAC, AesCtrStream for chunked CTR flows, and AesGcmCtx for AAD + payload streaming with tag verification.
  • GcmNonceOptions lets you pick random, counter+random, or boot-counter IV strategies (with optional NVS persistence) when using aesGcmEncryptAuto(...).
  • JWT additions: JWK/JWKS verification helper, leeway support, multi-audience/typ enforcement, and DER↔raw ECDSA helpers to match JOSE encodings.
  • ChaCha20-Poly1305 encrypt/decrypt helpers and X25519 shared-secret derivation for devices where AES accel varies. XChaCha20-Poly1305 and Ed25519/EdDSA APIs currently return Unsupported until the toolchain provides those primitives.
  • CryptoResult<String> createJwtResult(...) / verifyJwtResult(...) – Build HS256/RS256/ES256 JWTs with auto iat/exp fields and get back structured status plus the friendly error string versions.
  • CryptoResult<std::vector<uint8_t>> hmac/hkdf/pbkdf2 and hashString/verifyString – HMAC/HKDF/PBKDF2 building blocks; password hashes stay in the $esphash$v1$cost$salt$hash envelope and compare in constant time.
  • CryptoCaps caps() and SecureBuffer/SecureString – Introspect hardware acceleration availability and zeroize sensitive buffers on scope exit.

JWT Helpers

JwtSignOptions lets you set issuer, subject, audience, expiresInSeconds, notBefore, issuedAt, and keyId. JwtVerifyOptions can enforce issuer/audience matches, require expiration, and accept externally supplied clocks (e.g., SNTP time). Header/payload data stays as ArduinoJson v7 JsonDocuments, so you can merge them with doc.set(...) or stream them over serial for debugging. Use createJwt/verifyJwt for friendly strings or createJwtResult/verifyJwtResult for structured status codes.

verifyJwtWithJwks consumes an in-memory JWKS (JsonDocument) and picks keys by kid, with support for leeway, multi-audience payloads, typ enforcement, and crit header allowlists. ECDSA raw/DER conversion helpers are available when interoping with JOSE stacks that send compact raw signatures.

Policy & Guardrails

  • CryptoPolicy (default: RSA ≥ 2048 bits, PBKDF2 iterations ≥ 1024, GCM IV ≥ 12 bytes) is readable via ESPCrypto::policy() and adjustable with setPolicy(...); set allowLegacy = true to opt into weaker parameters.
  • AES-GCM can enable debug nonce-reuse detection via ESPCRYPTO_ENABLE_NONCE_GUARD (tiny LRU cache keyed by IV + key fingerprint).
  • constantTimeEq performs content-constant-time comparison only when both inputs already have the same length; a length mismatch returns false immediately. SecureBuffer and SecureString zeroize owned memory on cleanup.

Security Posture

  • Constant-time coverage: constantTimeEq underpins password verification and HS256 JWT checks when compared buffers are the same length; it does not hide input length. Other primitives lean on ESP-IDF/mbedTLS implementations and should be treated as best-effort constant-time rather than hardened side-channel countermeasures.
  • Hardware acceleration: SHA, AES-CTR, and AES-GCM try the ESP hardware blocks first and fall back to mbedTLS software paths; ESPCrypto::caps() reports what is active at runtime. Random bytes come from esp_fill_random on-device and from std::random_device only for host builds/tests.
  • Best-effort hardening: password hashes stay in a structured envelope with policy-enforced PBKDF2 costs, AES-GCM enforces IV length and offers an optional nonce-reuse guard, and sensitive buffers zeroize on scope exit or failure paths.
  • Threat model: aimed at network-connected ESP32-class devices where attackers can send arbitrary inputs. It does not attempt to defend against physical capture, power/EM/fault-injection side channels, or secure element/key storage requirements; review your board’s secure boot/flash encryption story separately.

Password Hashing

hashString emits $esphash$v1$<cost>$<salt>$<hash> so you can persist passwords without storing secrets. Costs map to 2^cost PBKDF2 iterations (default 10 ⇒ 1024) and will auto-bump to the policy minimum iteration count unless allowLegacy is enabled. verifyString accepts any string in that envelope, decodes the salt/hash, replays PBKDF2, and compares in constant time.

Tests

Hardware exercises run via PlatformIO Unity tests under test/test_esp_crypto, including KATs for SHA-2, AES-GCM (with tag checks), HKDF, PBKDF2, JWT HS256 round-trips, and password hashing. Host-side CMake just stubs out tests (ESP-IDF primitives are unavailable when cross-compiling for CI).

Formatting Baseline

This repository follows the firmware formatting baseline from esptoolkit-template:

  • .clang-format is the source of truth for C/C++/INO layout.
  • .editorconfig enforces tabs (tab_width = 4), LF endings, and final newline.
  • Format all tracked firmware sources with bash scripts/format_cpp.sh.

License

MIT — see LICENSE.md.

ESPToolKit

About

ESPCrypto wraps the ESP32 hardware crypto blocks (SHA, AES-GCM/CTR, RSA/ECC) with guardrails, automatic fallbacks, and high-level helpers (JWTs, salted hashes)

Topics

Resources

Code of conduct

Stars

6 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Strip utm_, fbclid, gclid, etc. from all links on page\n(function() {\n var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content',\n 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid',\n 'ref', 'ref_src', 'source', 'medium', 'campaign'];\n \n function cleanUrl(url) {\n try {\n var u = new URL(url, window.location.origin);\n var changed = false;\n trackingParams.forEach(function(p) {\n if (u.searchParams.has(p)) {\n u.searchParams.delete(p);\n changed = true;\n }\n });\n return changed ? u.toString() : url;\n } catch (e) {\n return url;\n }\n }\n \n function cleanLinks() {\n document.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n \n cleanLinks();\n \n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1) {\n if (node.tagName === 'A') cleanLinks();\n node.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Remove Tracking Parameters from Links"); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + '
Skip to content
This repository was archived by the owner on Aug 3, 2026. It is now read-only.

Repository files navigation

Warning

This repository is deprecated and no longer maintained.

Search for an equivalent library under the ZekStack organization at: ZekStack/repositories

ESPCrypto

ESPCrypto wraps the ESP32 hardware crypto blocks (SHA, AES-GCM/CTR, RSA/ECC) with guardrails, automatic fallbacks, and high-level helpers (JWTs, salted hashes) that work in both ESP-IDF and Arduino builds.

CI / Release / License

CIReleaseLicense: MIT

Toolchain Compatibility

  • GitHub Actions builds against the ESP32 Arduino core 3.3.3 via Espressif's board manager URL (IDF 5.x generation) and caches the toolchains to keep PlatformIO/Arduino builds in sync for esp32, esp32-s3, esp32-c3, and esp32-p4 boards.
  • Runtime code gates the mbedTLS 2.x (ESP-IDF 4.x) and 3.x (ESP-IDF 5.x) API differences—including the ESP AES-GCM alt streaming signatures—so PlatformIO/Arduino builds succeed regardless of which ESP-IDF revision a board package ships.
  • Device fingerprinting prefers esp_read_mac from esp_mac.h when present and falls back to esp_efuse_mac_get_default, so Arduino/PlatformIO board packages that dropped esp_efuse_mac.h still build.

Features

  • SHA256/384/512 helpers that try the ESP parallel SHA engine first and fall back to mbedTLS when the accelerator (or platform) is unavailable.
  • AES-GCM and AES-CTR utilities with a safe aesGcmEncryptAuto that generates a random 12-byte IV, optional nonce-reuse debug guard, and capability introspection via ESPCrypto::caps().
  • RSA/ECC signing + verification helpers (PKCS#1 v1.5 + ECDSA) that power HS256/RS256/ES256 JWT flows or stand-alone signatures.
  • CryptoKey + KeyHandle abstractions with MemoryKeyStore, NvsKeyStore, and LittleFsKeyStore for alias/versioned key rotation plus cached mbedTLS contexts to avoid repeated parsing.
  • Device-bound HKDF helper deriveDeviceKey(...) that derives stable per-device keys from an optional persistent NVS secret plus the chip fingerprint, mainly to avoid hard-coded symmetric keys rather than to provide hardware-backed key protection.
  • Buffer-friendly span overloads for SHA digests and AES-GCM encrypt/decrypt that write into caller-provided buffers to reduce heap churn on large payloads, plus streaming contexts (ShaCtx, HmacCtx, AesCtrStream, AesGcmCtx) for chunked workloads.
  • Nonce strategies for AES-GCM auto IVs: random 96-bit (default), counter+random hybrid, or boot-counter based with optional NVS persistence to avoid reuse under long-lived keys.
  • Modern lanes: ChaCha20-Poly1305 for CPUs without AES accel, X25519 ECDH helper, and ECDSA DER↔raw helpers to interop with JOSE stacks. (Ed25519/EdDSA stay capability-gated to platform support.)
  • HMAC/HKDF/PBKDF2 (SHA-256/384/512) building blocks with policy enforcement for PBKDF2 iteration counts; password hashing uses these primitives and constant-time verification.
  • Structured CryptoStatus + CryptoResult<T> with span-friendly overloads to reduce heap churn and keep error handling uniform; SecureBuffer/SecureString zeroize sensitive data on scope exit.
  • Full JWT builder/validator that uses ArduinoJson v7 JsonDocuments, fills iat/exp/nbf fields, enforces issuer/audience, and exposes both friendly errors and structured status codes.
  • Ready-to-flash example plus Unity tests under test/test_esp_crypto with NIST/RFC vectors for SHA, AES-GCM, HKDF, PBKDF2, JWT, and password hashing regressions.

Examples

  • examples/basic_hash_and_aes – SHA plus AES-GCM with auto IV/tag handling and structured status.
  • examples/jwt_and_password – HS256 JWT creation/verification and password hashing/verification.
  • examples/advanced_primitives – Capability/policy introspection, SecureBuffer/String, HMAC/HKDF/PBKDF2, AES-CTR streaming, and RSA/ECDSA signing flows.
  • examples/keys_and_streaming – Keystore usage, streaming SHA/AES-GCM, nonce strategies, and device-bound key derivation.
  • examples/bench_crypto – Tiny on-device timing loops for SHA and AES-GCM to gauge perf per board.
  • examples/jwks_rotation – JWKS verification with rotating kid values for HS256.

The basic AES example shows SHA and AES-GCM in one go:

#include<Arduino.h>
#include<ESPCrypto.h>
#include<vector>voidsetup() {
Serial.begin(115200);
std::vector<uint8_t> key(32, 0x01);
std::vector<uint8_t> plaintext = {'h', 'e', 'l', 'l', 'o'};
String digest = ESPCrypto::shaHex("esptoolkit");
auto gcm = ESPCrypto::aesGcmEncryptAuto(key, plaintext);
if (gcm.ok()) {
auto decrypted = ESPCrypto::aesGcmDecrypt(key, gcm.value.iv, gcm.value.ciphertext, gcm.value.tag);
(void)decrypted;
}
// Release ESPCrypto runtime caches/state before deep sleep or shutdown paths.ESPCrypto::deinit();
}
voidloop() {}

Run examples/basic_hash_and_aes via PlatformIO/Arduino to see the full output.

Lifecycle and Teardown

  • ESPCrypto is static-style, so there is no instance destructor to release global runtime state.
  • Call ESPCrypto::deinit() when your app no longer needs crypto helpers (for example before deep sleep, app shutdown, or full subsystem restart).
  • deinit() is safe before any crypto call and safe to call repeatedly.
  • Use ESPCrypto::isInitialized() to check whether runtime state (policy/caches/counters) is currently active.

Key management and device-bound helpers

Cache parsed keys, rotate aliases, and derive symmetric keys without shipping long-lived secrets in firmware:

#include<ESPCrypto.h>voidrotate_keys() {
MemoryKeyStore memory;
KeyHandle current{String("jwt_auth"), 2};
// Store a PEM private key and reload it as a cached CryptoKeyconstchar *pem = "-----BEGIN PRIVATE KEY-----...";
ESPCrypto::storeKey(memory, current, CryptoSpan<constuint8_t>(reinterpret_cast<constuint8_t *>(pem), strlen(pem)));
auto loaded = ESPCrypto::loadKey(memory, current, KeyFormat::Pem, KeyKind::Private);
if (loaded.ok()) {
auto sig = ESPCrypto::rsaSign(
loaded.value,
CryptoSpan<constuint8_t>(reinterpret_cast<constuint8_t *>("payload"), 7),
ShaVariant::SHA256
);
(void)sig;
}
// Derive a device-bound symmetric key using HKDF + NVS-backed seedauto derived = ESPCrypto::deriveDeviceKey("provisioning", CryptoSpan<constuint8_t>(), 32);
if (derived.ok()) {
// use derived.value as an AES or HMAC key without embedding long-term secrets
}
}

MemoryKeyStore keeps key material only in RAM for tests or ephemeral rotations. LittleFsKeyStore stores blobs on LittleFS when mounted, and NvsKeyStore persists blobs in NVS with whatever flash/NVS protection the device is configured for. None of these backends should be treated as a secure-element substitute.

API Highlights

  • CryptoResult<std::vector<uint8_t>> shaResult(...) / shaHex(...) – SHA256/384/512 with optional hardware preference (default on) and structured status codes.
  • CryptoResult<GcmMessage> aesGcmEncryptAuto(...) + aesGcmDecrypt(...) – 128/192/256-bit AES-GCM with random IVs, optional AAD, 16-byte tags, and policy-enforced IV length; aesCtrCrypt(...) covers stream-like CTR use cases.
  • CryptoResult<std::vector<uint8_t>> rsaSign/eccSign and rsaVerify/eccVerify – Wrap mbedTLS PK contexts while enforcing minimum key sizes unless allowLegacy is enabled.
  • CryptoKey helpers for RSA/ECC reuse parsed PK contexts; pair them with KeyHandle aliases in a KeyStore to rotate versions without reparsing PEM/DER.
  • CryptoResult<void> sha(...) and aesGcmEncrypt/Decrypt(...) span overloads – write digests/ciphertext/tag into caller-owned buffers to avoid heap allocations on large payloads.
  • Streaming helpers: ShaCtx/HmacCtx for incremental hashing/HMAC, AesCtrStream for chunked CTR flows, and AesGcmCtx for AAD + payload streaming with tag verification.
  • GcmNonceOptions lets you pick random, counter+random, or boot-counter IV strategies (with optional NVS persistence) when using aesGcmEncryptAuto(...).
  • JWT additions: JWK/JWKS verification helper, leeway support, multi-audience/typ enforcement, and DER↔raw ECDSA helpers to match JOSE encodings.
  • ChaCha20-Poly1305 encrypt/decrypt helpers and X25519 shared-secret derivation for devices where AES accel varies. XChaCha20-Poly1305 and Ed25519/EdDSA APIs currently return Unsupported until the toolchain provides those primitives.
  • CryptoResult<String> createJwtResult(...) / verifyJwtResult(...) – Build HS256/RS256/ES256 JWTs with auto iat/exp fields and get back structured status plus the friendly error string versions.
  • CryptoResult<std::vector<uint8_t>> hmac/hkdf/pbkdf2 and hashString/verifyString – HMAC/HKDF/PBKDF2 building blocks; password hashes stay in the $esphash$v1$cost$salt$hash envelope and compare in constant time.
  • CryptoCaps caps() and SecureBuffer/SecureString – Introspect hardware acceleration availability and zeroize sensitive buffers on scope exit.

JWT Helpers

JwtSignOptions lets you set issuer, subject, audience, expiresInSeconds, notBefore, issuedAt, and keyId. JwtVerifyOptions can enforce issuer/audience matches, require expiration, and accept externally supplied clocks (e.g., SNTP time). Header/payload data stays as ArduinoJson v7 JsonDocuments, so you can merge them with doc.set(...) or stream them over serial for debugging. Use createJwt/verifyJwt for friendly strings or createJwtResult/verifyJwtResult for structured status codes.

verifyJwtWithJwks consumes an in-memory JWKS (JsonDocument) and picks keys by kid, with support for leeway, multi-audience payloads, typ enforcement, and crit header allowlists. ECDSA raw/DER conversion helpers are available when interoping with JOSE stacks that send compact raw signatures.

Policy & Guardrails

  • CryptoPolicy (default: RSA ≥ 2048 bits, PBKDF2 iterations ≥ 1024, GCM IV ≥ 12 bytes) is readable via ESPCrypto::policy() and adjustable with setPolicy(...); set allowLegacy = true to opt into weaker parameters.
  • AES-GCM can enable debug nonce-reuse detection via ESPCRYPTO_ENABLE_NONCE_GUARD (tiny LRU cache keyed by IV + key fingerprint).
  • constantTimeEq performs content-constant-time comparison only when both inputs already have the same length; a length mismatch returns false immediately. SecureBuffer and SecureString zeroize owned memory on cleanup.

Security Posture

  • Constant-time coverage: constantTimeEq underpins password verification and HS256 JWT checks when compared buffers are the same length; it does not hide input length. Other primitives lean on ESP-IDF/mbedTLS implementations and should be treated as best-effort constant-time rather than hardened side-channel countermeasures.
  • Hardware acceleration: SHA, AES-CTR, and AES-GCM try the ESP hardware blocks first and fall back to mbedTLS software paths; ESPCrypto::caps() reports what is active at runtime. Random bytes come from esp_fill_random on-device and from std::random_device only for host builds/tests.
  • Best-effort hardening: password hashes stay in a structured envelope with policy-enforced PBKDF2 costs, AES-GCM enforces IV length and offers an optional nonce-reuse guard, and sensitive buffers zeroize on scope exit or failure paths.
  • Threat model: aimed at network-connected ESP32-class devices where attackers can send arbitrary inputs. It does not attempt to defend against physical capture, power/EM/fault-injection side channels, or secure element/key storage requirements; review your board’s secure boot/flash encryption story separately.

Password Hashing

hashString emits $esphash$v1$<cost>$<salt>$<hash> so you can persist passwords without storing secrets. Costs map to 2^cost PBKDF2 iterations (default 10 ⇒ 1024) and will auto-bump to the policy minimum iteration count unless allowLegacy is enabled. verifyString accepts any string in that envelope, decodes the salt/hash, replays PBKDF2, and compares in constant time.

Tests

Hardware exercises run via PlatformIO Unity tests under test/test_esp_crypto, including KATs for SHA-2, AES-GCM (with tag checks), HKDF, PBKDF2, JWT HS256 round-trips, and password hashing. Host-side CMake just stubs out tests (ESP-IDF primitives are unavailable when cross-compiling for CI).

Formatting Baseline

This repository follows the firmware formatting baseline from esptoolkit-template:

  • .clang-format is the source of truth for C/C++/INO layout.
  • .editorconfig enforces tabs (tab_width = 4), LF endings, and final newline.
  • Format all tracked firmware sources with bash scripts/format_cpp.sh.

License

MIT — see LICENSE.md.

ESPToolKit

About

ESPCrypto wraps the ESP32 hardware crypto blocks (SHA, AES-GCM/CTR, RSA/ECC) with guardrails, automatic fallbacks, and high-level helpers (JWTs, salted hashes)

Topics

Resources

Code of conduct

Stars

6 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Auto-enable theater mode on YouTube\n(function() {\n function tryTheater() {\n var btn = document.querySelector('button[aria-label=\"Theater mode\"], ytd-player #player button[title=\"Theater mode\"]');\n if (btn && !btn.classList.contains('activated')) {\n btn.click();\n }\n }\n \n // Try immediately\n tryTheater();\n \n // Try after navigation (SPA)\n var lastUrl = location.href;\n setInterval(function() {\n if (location.href !== lastUrl) {\n lastUrl = location.href;\n setTimeout(tryTheater, 500);\n }\n }, 1000);\n \n // Also try on player load\n var observer = new MutationObserver(tryTheater);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "YouTube Theater Mode Default"); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content
This repository was archived by the owner on Aug 3, 2026. It is now read-only.

Repository files navigation

Warning

This repository is deprecated and no longer maintained.

Search for an equivalent library under the ZekStack organization at: ZekStack/repositories

ESPCrypto

ESPCrypto wraps the ESP32 hardware crypto blocks (SHA, AES-GCM/CTR, RSA/ECC) with guardrails, automatic fallbacks, and high-level helpers (JWTs, salted hashes) that work in both ESP-IDF and Arduino builds.

CI / Release / License

CIReleaseLicense: MIT

Toolchain Compatibility

  • GitHub Actions builds against the ESP32 Arduino core 3.3.3 via Espressif's board manager URL (IDF 5.x generation) and caches the toolchains to keep PlatformIO/Arduino builds in sync for esp32, esp32-s3, esp32-c3, and esp32-p4 boards.
  • Runtime code gates the mbedTLS 2.x (ESP-IDF 4.x) and 3.x (ESP-IDF 5.x) API differences—including the ESP AES-GCM alt streaming signatures—so PlatformIO/Arduino builds succeed regardless of which ESP-IDF revision a board package ships.
  • Device fingerprinting prefers esp_read_mac from esp_mac.h when present and falls back to esp_efuse_mac_get_default, so Arduino/PlatformIO board packages that dropped esp_efuse_mac.h still build.

Features

  • SHA256/384/512 helpers that try the ESP parallel SHA engine first and fall back to mbedTLS when the accelerator (or platform) is unavailable.
  • AES-GCM and AES-CTR utilities with a safe aesGcmEncryptAuto that generates a random 12-byte IV, optional nonce-reuse debug guard, and capability introspection via ESPCrypto::caps().
  • RSA/ECC signing + verification helpers (PKCS#1 v1.5 + ECDSA) that power HS256/RS256/ES256 JWT flows or stand-alone signatures.
  • CryptoKey + KeyHandle abstractions with MemoryKeyStore, NvsKeyStore, and LittleFsKeyStore for alias/versioned key rotation plus cached mbedTLS contexts to avoid repeated parsing.
  • Device-bound HKDF helper deriveDeviceKey(...) that derives stable per-device keys from an optional persistent NVS secret plus the chip fingerprint, mainly to avoid hard-coded symmetric keys rather than to provide hardware-backed key protection.
  • Buffer-friendly span overloads for SHA digests and AES-GCM encrypt/decrypt that write into caller-provided buffers to reduce heap churn on large payloads, plus streaming contexts (ShaCtx, HmacCtx, AesCtrStream, AesGcmCtx) for chunked workloads.
  • Nonce strategies for AES-GCM auto IVs: random 96-bit (default), counter+random hybrid, or boot-counter based with optional NVS persistence to avoid reuse under long-lived keys.
  • Modern lanes: ChaCha20-Poly1305 for CPUs without AES accel, X25519 ECDH helper, and ECDSA DER↔raw helpers to interop with JOSE stacks. (Ed25519/EdDSA stay capability-gated to platform support.)
  • HMAC/HKDF/PBKDF2 (SHA-256/384/512) building blocks with policy enforcement for PBKDF2 iteration counts; password hashing uses these primitives and constant-time verification.
  • Structured CryptoStatus + CryptoResult<T> with span-friendly overloads to reduce heap churn and keep error handling uniform; SecureBuffer/SecureString zeroize sensitive data on scope exit.
  • Full JWT builder/validator that uses ArduinoJson v7 JsonDocuments, fills iat/exp/nbf fields, enforces issuer/audience, and exposes both friendly errors and structured status codes.
  • Ready-to-flash example plus Unity tests under test/test_esp_crypto with NIST/RFC vectors for SHA, AES-GCM, HKDF, PBKDF2, JWT, and password hashing regressions.

Examples

  • examples/basic_hash_and_aes – SHA plus AES-GCM with auto IV/tag handling and structured status.
  • examples/jwt_and_password – HS256 JWT creation/verification and password hashing/verification.
  • examples/advanced_primitives – Capability/policy introspection, SecureBuffer/String, HMAC/HKDF/PBKDF2, AES-CTR streaming, and RSA/ECDSA signing flows.
  • examples/keys_and_streaming – Keystore usage, streaming SHA/AES-GCM, nonce strategies, and device-bound key derivation.
  • examples/bench_crypto – Tiny on-device timing loops for SHA and AES-GCM to gauge perf per board.
  • examples/jwks_rotation – JWKS verification with rotating kid values for HS256.

The basic AES example shows SHA and AES-GCM in one go:

#include<Arduino.h>
#include<ESPCrypto.h>
#include<vector>voidsetup() {
Serial.begin(115200);
std::vector<uint8_t> key(32, 0x01);
std::vector<uint8_t> plaintext = {'h', 'e', 'l', 'l', 'o'};
String digest = ESPCrypto::shaHex("esptoolkit");
auto gcm = ESPCrypto::aesGcmEncryptAuto(key, plaintext);
if (gcm.ok()) {
auto decrypted = ESPCrypto::aesGcmDecrypt(key, gcm.value.iv, gcm.value.ciphertext, gcm.value.tag);
(void)decrypted;
}
// Release ESPCrypto runtime caches/state before deep sleep or shutdown paths.ESPCrypto::deinit();
}
voidloop() {}

Run examples/basic_hash_and_aes via PlatformIO/Arduino to see the full output.

Lifecycle and Teardown

  • ESPCrypto is static-style, so there is no instance destructor to release global runtime state.
  • Call ESPCrypto::deinit() when your app no longer needs crypto helpers (for example before deep sleep, app shutdown, or full subsystem restart).
  • deinit() is safe before any crypto call and safe to call repeatedly.
  • Use ESPCrypto::isInitialized() to check whether runtime state (policy/caches/counters) is currently active.

Key management and device-bound helpers

Cache parsed keys, rotate aliases, and derive symmetric keys without shipping long-lived secrets in firmware:

#include<ESPCrypto.h>voidrotate_keys() {
MemoryKeyStore memory;
KeyHandle current{String("jwt_auth"), 2};
// Store a PEM private key and reload it as a cached CryptoKeyconstchar *pem = "-----BEGIN PRIVATE KEY-----...";
ESPCrypto::storeKey(memory, current, CryptoSpan<constuint8_t>(reinterpret_cast<constuint8_t *>(pem), strlen(pem)));
auto loaded = ESPCrypto::loadKey(memory, current, KeyFormat::Pem, KeyKind::Private);
if (loaded.ok()) {
auto sig = ESPCrypto::rsaSign(
loaded.value,
CryptoSpan<constuint8_t>(reinterpret_cast<constuint8_t *>("payload"), 7),
ShaVariant::SHA256
);
(void)sig;
}
// Derive a device-bound symmetric key using HKDF + NVS-backed seedauto derived = ESPCrypto::deriveDeviceKey("provisioning", CryptoSpan<constuint8_t>(), 32);
if (derived.ok()) {
// use derived.value as an AES or HMAC key without embedding long-term secrets
}
}

MemoryKeyStore keeps key material only in RAM for tests or ephemeral rotations. LittleFsKeyStore stores blobs on LittleFS when mounted, and NvsKeyStore persists blobs in NVS with whatever flash/NVS protection the device is configured for. None of these backends should be treated as a secure-element substitute.

API Highlights

  • CryptoResult<std::vector<uint8_t>> shaResult(...) / shaHex(...) – SHA256/384/512 with optional hardware preference (default on) and structured status codes.
  • CryptoResult<GcmMessage> aesGcmEncryptAuto(...) + aesGcmDecrypt(...) – 128/192/256-bit AES-GCM with random IVs, optional AAD, 16-byte tags, and policy-enforced IV length; aesCtrCrypt(...) covers stream-like CTR use cases.
  • CryptoResult<std::vector<uint8_t>> rsaSign/eccSign and rsaVerify/eccVerify – Wrap mbedTLS PK contexts while enforcing minimum key sizes unless allowLegacy is enabled.
  • CryptoKey helpers for RSA/ECC reuse parsed PK contexts; pair them with KeyHandle aliases in a KeyStore to rotate versions without reparsing PEM/DER.
  • CryptoResult<void> sha(...) and aesGcmEncrypt/Decrypt(...) span overloads – write digests/ciphertext/tag into caller-owned buffers to avoid heap allocations on large payloads.
  • Streaming helpers: ShaCtx/HmacCtx for incremental hashing/HMAC, AesCtrStream for chunked CTR flows, and AesGcmCtx for AAD + payload streaming with tag verification.
  • GcmNonceOptions lets you pick random, counter+random, or boot-counter IV strategies (with optional NVS persistence) when using aesGcmEncryptAuto(...).
  • JWT additions: JWK/JWKS verification helper, leeway support, multi-audience/typ enforcement, and DER↔raw ECDSA helpers to match JOSE encodings.
  • ChaCha20-Poly1305 encrypt/decrypt helpers and X25519 shared-secret derivation for devices where AES accel varies. XChaCha20-Poly1305 and Ed25519/EdDSA APIs currently return Unsupported until the toolchain provides those primitives.
  • CryptoResult<String> createJwtResult(...) / verifyJwtResult(...) – Build HS256/RS256/ES256 JWTs with auto iat/exp fields and get back structured status plus the friendly error string versions.
  • CryptoResult<std::vector<uint8_t>> hmac/hkdf/pbkdf2 and hashString/verifyString – HMAC/HKDF/PBKDF2 building blocks; password hashes stay in the $esphash$v1$cost$salt$hash envelope and compare in constant time.
  • CryptoCaps caps() and SecureBuffer/SecureString – Introspect hardware acceleration availability and zeroize sensitive buffers on scope exit.

JWT Helpers

JwtSignOptions lets you set issuer, subject, audience, expiresInSeconds, notBefore, issuedAt, and keyId. JwtVerifyOptions can enforce issuer/audience matches, require expiration, and accept externally supplied clocks (e.g., SNTP time). Header/payload data stays as ArduinoJson v7 JsonDocuments, so you can merge them with doc.set(...) or stream them over serial for debugging. Use createJwt/verifyJwt for friendly strings or createJwtResult/verifyJwtResult for structured status codes.

verifyJwtWithJwks consumes an in-memory JWKS (JsonDocument) and picks keys by kid, with support for leeway, multi-audience payloads, typ enforcement, and crit header allowlists. ECDSA raw/DER conversion helpers are available when interoping with JOSE stacks that send compact raw signatures.

Policy & Guardrails

  • CryptoPolicy (default: RSA ≥ 2048 bits, PBKDF2 iterations ≥ 1024, GCM IV ≥ 12 bytes) is readable via ESPCrypto::policy() and adjustable with setPolicy(...); set allowLegacy = true to opt into weaker parameters.
  • AES-GCM can enable debug nonce-reuse detection via ESPCRYPTO_ENABLE_NONCE_GUARD (tiny LRU cache keyed by IV + key fingerprint).
  • constantTimeEq performs content-constant-time comparison only when both inputs already have the same length; a length mismatch returns false immediately. SecureBuffer and SecureString zeroize owned memory on cleanup.

Security Posture

  • Constant-time coverage: constantTimeEq underpins password verification and HS256 JWT checks when compared buffers are the same length; it does not hide input length. Other primitives lean on ESP-IDF/mbedTLS implementations and should be treated as best-effort constant-time rather than hardened side-channel countermeasures.
  • Hardware acceleration: SHA, AES-CTR, and AES-GCM try the ESP hardware blocks first and fall back to mbedTLS software paths; ESPCrypto::caps() reports what is active at runtime. Random bytes come from esp_fill_random on-device and from std::random_device only for host builds/tests.
  • Best-effort hardening: password hashes stay in a structured envelope with policy-enforced PBKDF2 costs, AES-GCM enforces IV length and offers an optional nonce-reuse guard, and sensitive buffers zeroize on scope exit or failure paths.
  • Threat model: aimed at network-connected ESP32-class devices where attackers can send arbitrary inputs. It does not attempt to defend against physical capture, power/EM/fault-injection side channels, or secure element/key storage requirements; review your board’s secure boot/flash encryption story separately.

Password Hashing

hashString emits $esphash$v1$<cost>$<salt>$<hash> so you can persist passwords without storing secrets. Costs map to 2^cost PBKDF2 iterations (default 10 ⇒ 1024) and will auto-bump to the policy minimum iteration count unless allowLegacy is enabled. verifyString accepts any string in that envelope, decodes the salt/hash, replays PBKDF2, and compares in constant time.

Tests

Hardware exercises run via PlatformIO Unity tests under test/test_esp_crypto, including KATs for SHA-2, AES-GCM (with tag checks), HKDF, PBKDF2, JWT HS256 round-trips, and password hashing. Host-side CMake just stubs out tests (ESP-IDF primitives are unavailable when cross-compiling for CI).

Formatting Baseline

This repository follows the firmware formatting baseline from esptoolkit-template:

  • .clang-format is the source of truth for C/C++/INO layout.
  • .editorconfig enforces tabs (tab_width = 4), LF endings, and final newline.
  • Format all tracked firmware sources with bash scripts/format_cpp.sh.

License

MIT — see LICENSE.md.

ESPToolKit

About

ESPCrypto wraps the ESP32 hardware crypto blocks (SHA, AES-GCM/CTR, RSA/ECC) with guardrails, automatic fallbacks, and high-level helpers (JWTs, salted hashes)

Topics

Resources

Code of conduct

Stars

6 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Remove or un-stick sticky/fixed headers that block content\n(function() {\n function unstick() {\n document.querySelectorAll('header, nav, [role=\"banner\"], .header, .navbar, .sticky, .fixed-top, [style*=\"position: fixed\"], [style*=\"position:sticky\"]').forEach(function(el) {\n if (el.style.position === 'fixed' || el.style.position === 'sticky' || \n getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') {\n el.style.position = 'static';\n el.style.top = 'auto';\n el.style.zIndex = 'auto';\n }\n });\n }\n \n unstick();\n \n var observer = new MutationObserver(unstick);\n observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] });\n})();", "Kill Sticky Headers"); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content
This repository was archived by the owner on Aug 3, 2026. It is now read-only.

Repository files navigation

Warning

This repository is deprecated and no longer maintained.

Search for an equivalent library under the ZekStack organization at: ZekStack/repositories

ESPCrypto

ESPCrypto wraps the ESP32 hardware crypto blocks (SHA, AES-GCM/CTR, RSA/ECC) with guardrails, automatic fallbacks, and high-level helpers (JWTs, salted hashes) that work in both ESP-IDF and Arduino builds.

CI / Release / License

CIReleaseLicense: MIT

Toolchain Compatibility

  • GitHub Actions builds against the ESP32 Arduino core 3.3.3 via Espressif's board manager URL (IDF 5.x generation) and caches the toolchains to keep PlatformIO/Arduino builds in sync for esp32, esp32-s3, esp32-c3, and esp32-p4 boards.
  • Runtime code gates the mbedTLS 2.x (ESP-IDF 4.x) and 3.x (ESP-IDF 5.x) API differences—including the ESP AES-GCM alt streaming signatures—so PlatformIO/Arduino builds succeed regardless of which ESP-IDF revision a board package ships.
  • Device fingerprinting prefers esp_read_mac from esp_mac.h when present and falls back to esp_efuse_mac_get_default, so Arduino/PlatformIO board packages that dropped esp_efuse_mac.h still build.

Features

  • SHA256/384/512 helpers that try the ESP parallel SHA engine first and fall back to mbedTLS when the accelerator (or platform) is unavailable.
  • AES-GCM and AES-CTR utilities with a safe aesGcmEncryptAuto that generates a random 12-byte IV, optional nonce-reuse debug guard, and capability introspection via ESPCrypto::caps().
  • RSA/ECC signing + verification helpers (PKCS#1 v1.5 + ECDSA) that power HS256/RS256/ES256 JWT flows or stand-alone signatures.
  • CryptoKey + KeyHandle abstractions with MemoryKeyStore, NvsKeyStore, and LittleFsKeyStore for alias/versioned key rotation plus cached mbedTLS contexts to avoid repeated parsing.
  • Device-bound HKDF helper deriveDeviceKey(...) that derives stable per-device keys from an optional persistent NVS secret plus the chip fingerprint, mainly to avoid hard-coded symmetric keys rather than to provide hardware-backed key protection.
  • Buffer-friendly span overloads for SHA digests and AES-GCM encrypt/decrypt that write into caller-provided buffers to reduce heap churn on large payloads, plus streaming contexts (ShaCtx, HmacCtx, AesCtrStream, AesGcmCtx) for chunked workloads.
  • Nonce strategies for AES-GCM auto IVs: random 96-bit (default), counter+random hybrid, or boot-counter based with optional NVS persistence to avoid reuse under long-lived keys.
  • Modern lanes: ChaCha20-Poly1305 for CPUs without AES accel, X25519 ECDH helper, and ECDSA DER↔raw helpers to interop with JOSE stacks. (Ed25519/EdDSA stay capability-gated to platform support.)
  • HMAC/HKDF/PBKDF2 (SHA-256/384/512) building blocks with policy enforcement for PBKDF2 iteration counts; password hashing uses these primitives and constant-time verification.
  • Structured CryptoStatus + CryptoResult<T> with span-friendly overloads to reduce heap churn and keep error handling uniform; SecureBuffer/SecureString zeroize sensitive data on scope exit.
  • Full JWT builder/validator that uses ArduinoJson v7 JsonDocuments, fills iat/exp/nbf fields, enforces issuer/audience, and exposes both friendly errors and structured status codes.
  • Ready-to-flash example plus Unity tests under test/test_esp_crypto with NIST/RFC vectors for SHA, AES-GCM, HKDF, PBKDF2, JWT, and password hashing regressions.

Examples

  • examples/basic_hash_and_aes – SHA plus AES-GCM with auto IV/tag handling and structured status.
  • examples/jwt_and_password – HS256 JWT creation/verification and password hashing/verification.
  • examples/advanced_primitives – Capability/policy introspection, SecureBuffer/String, HMAC/HKDF/PBKDF2, AES-CTR streaming, and RSA/ECDSA signing flows.
  • examples/keys_and_streaming – Keystore usage, streaming SHA/AES-GCM, nonce strategies, and device-bound key derivation.
  • examples/bench_crypto – Tiny on-device timing loops for SHA and AES-GCM to gauge perf per board.
  • examples/jwks_rotation – JWKS verification with rotating kid values for HS256.

The basic AES example shows SHA and AES-GCM in one go:

#include<Arduino.h>
#include<ESPCrypto.h>
#include<vector>voidsetup() {
Serial.begin(115200);
std::vector<uint8_t> key(32, 0x01);
std::vector<uint8_t> plaintext = {'h', 'e', 'l', 'l', 'o'};
String digest = ESPCrypto::shaHex("esptoolkit");
auto gcm = ESPCrypto::aesGcmEncryptAuto(key, plaintext);
if (gcm.ok()) {
auto decrypted = ESPCrypto::aesGcmDecrypt(key, gcm.value.iv, gcm.value.ciphertext, gcm.value.tag);
(void)decrypted;
}
// Release ESPCrypto runtime caches/state before deep sleep or shutdown paths.ESPCrypto::deinit();
}
voidloop() {}

Run examples/basic_hash_and_aes via PlatformIO/Arduino to see the full output.

Lifecycle and Teardown

  • ESPCrypto is static-style, so there is no instance destructor to release global runtime state.
  • Call ESPCrypto::deinit() when your app no longer needs crypto helpers (for example before deep sleep, app shutdown, or full subsystem restart).
  • deinit() is safe before any crypto call and safe to call repeatedly.
  • Use ESPCrypto::isInitialized() to check whether runtime state (policy/caches/counters) is currently active.

Key management and device-bound helpers

Cache parsed keys, rotate aliases, and derive symmetric keys without shipping long-lived secrets in firmware:

#include<ESPCrypto.h>voidrotate_keys() {
MemoryKeyStore memory;
KeyHandle current{String("jwt_auth"), 2};
// Store a PEM private key and reload it as a cached CryptoKeyconstchar *pem = "-----BEGIN PRIVATE KEY-----...";
ESPCrypto::storeKey(memory, current, CryptoSpan<constuint8_t>(reinterpret_cast<constuint8_t *>(pem), strlen(pem)));
auto loaded = ESPCrypto::loadKey(memory, current, KeyFormat::Pem, KeyKind::Private);
if (loaded.ok()) {
auto sig = ESPCrypto::rsaSign(
loaded.value,
CryptoSpan<constuint8_t>(reinterpret_cast<constuint8_t *>("payload"), 7),
ShaVariant::SHA256
);
(void)sig;
}
// Derive a device-bound symmetric key using HKDF + NVS-backed seedauto derived = ESPCrypto::deriveDeviceKey("provisioning", CryptoSpan<constuint8_t>(), 32);
if (derived.ok()) {
// use derived.value as an AES or HMAC key without embedding long-term secrets
}
}

MemoryKeyStore keeps key material only in RAM for tests or ephemeral rotations. LittleFsKeyStore stores blobs on LittleFS when mounted, and NvsKeyStore persists blobs in NVS with whatever flash/NVS protection the device is configured for. None of these backends should be treated as a secure-element substitute.

API Highlights

  • CryptoResult<std::vector<uint8_t>> shaResult(...) / shaHex(...) – SHA256/384/512 with optional hardware preference (default on) and structured status codes.
  • CryptoResult<GcmMessage> aesGcmEncryptAuto(...) + aesGcmDecrypt(...) – 128/192/256-bit AES-GCM with random IVs, optional AAD, 16-byte tags, and policy-enforced IV length; aesCtrCrypt(...) covers stream-like CTR use cases.
  • CryptoResult<std::vector<uint8_t>> rsaSign/eccSign and rsaVerify/eccVerify – Wrap mbedTLS PK contexts while enforcing minimum key sizes unless allowLegacy is enabled.
  • CryptoKey helpers for RSA/ECC reuse parsed PK contexts; pair them with KeyHandle aliases in a KeyStore to rotate versions without reparsing PEM/DER.
  • CryptoResult<void> sha(...) and aesGcmEncrypt/Decrypt(...) span overloads – write digests/ciphertext/tag into caller-owned buffers to avoid heap allocations on large payloads.
  • Streaming helpers: ShaCtx/HmacCtx for incremental hashing/HMAC, AesCtrStream for chunked CTR flows, and AesGcmCtx for AAD + payload streaming with tag verification.
  • GcmNonceOptions lets you pick random, counter+random, or boot-counter IV strategies (with optional NVS persistence) when using aesGcmEncryptAuto(...).
  • JWT additions: JWK/JWKS verification helper, leeway support, multi-audience/typ enforcement, and DER↔raw ECDSA helpers to match JOSE encodings.
  • ChaCha20-Poly1305 encrypt/decrypt helpers and X25519 shared-secret derivation for devices where AES accel varies. XChaCha20-Poly1305 and Ed25519/EdDSA APIs currently return Unsupported until the toolchain provides those primitives.
  • CryptoResult<String> createJwtResult(...) / verifyJwtResult(...) – Build HS256/RS256/ES256 JWTs with auto iat/exp fields and get back structured status plus the friendly error string versions.
  • CryptoResult<std::vector<uint8_t>> hmac/hkdf/pbkdf2 and hashString/verifyString – HMAC/HKDF/PBKDF2 building blocks; password hashes stay in the $esphash$v1$cost$salt$hash envelope and compare in constant time.
  • CryptoCaps caps() and SecureBuffer/SecureString – Introspect hardware acceleration availability and zeroize sensitive buffers on scope exit.

JWT Helpers

JwtSignOptions lets you set issuer, subject, audience, expiresInSeconds, notBefore, issuedAt, and keyId. JwtVerifyOptions can enforce issuer/audience matches, require expiration, and accept externally supplied clocks (e.g., SNTP time). Header/payload data stays as ArduinoJson v7 JsonDocuments, so you can merge them with doc.set(...) or stream them over serial for debugging. Use createJwt/verifyJwt for friendly strings or createJwtResult/verifyJwtResult for structured status codes.

verifyJwtWithJwks consumes an in-memory JWKS (JsonDocument) and picks keys by kid, with support for leeway, multi-audience payloads, typ enforcement, and crit header allowlists. ECDSA raw/DER conversion helpers are available when interoping with JOSE stacks that send compact raw signatures.

Policy & Guardrails

  • CryptoPolicy (default: RSA ≥ 2048 bits, PBKDF2 iterations ≥ 1024, GCM IV ≥ 12 bytes) is readable via ESPCrypto::policy() and adjustable with setPolicy(...); set allowLegacy = true to opt into weaker parameters.
  • AES-GCM can enable debug nonce-reuse detection via ESPCRYPTO_ENABLE_NONCE_GUARD (tiny LRU cache keyed by IV + key fingerprint).
  • constantTimeEq performs content-constant-time comparison only when both inputs already have the same length; a length mismatch returns false immediately. SecureBuffer and SecureString zeroize owned memory on cleanup.

Security Posture

  • Constant-time coverage: constantTimeEq underpins password verification and HS256 JWT checks when compared buffers are the same length; it does not hide input length. Other primitives lean on ESP-IDF/mbedTLS implementations and should be treated as best-effort constant-time rather than hardened side-channel countermeasures.
  • Hardware acceleration: SHA, AES-CTR, and AES-GCM try the ESP hardware blocks first and fall back to mbedTLS software paths; ESPCrypto::caps() reports what is active at runtime. Random bytes come from esp_fill_random on-device and from std::random_device only for host builds/tests.
  • Best-effort hardening: password hashes stay in a structured envelope with policy-enforced PBKDF2 costs, AES-GCM enforces IV length and offers an optional nonce-reuse guard, and sensitive buffers zeroize on scope exit or failure paths.
  • Threat model: aimed at network-connected ESP32-class devices where attackers can send arbitrary inputs. It does not attempt to defend against physical capture, power/EM/fault-injection side channels, or secure element/key storage requirements; review your board’s secure boot/flash encryption story separately.

Password Hashing

hashString emits $esphash$v1$<cost>$<salt>$<hash> so you can persist passwords without storing secrets. Costs map to 2^cost PBKDF2 iterations (default 10 ⇒ 1024) and will auto-bump to the policy minimum iteration count unless allowLegacy is enabled. verifyString accepts any string in that envelope, decodes the salt/hash, replays PBKDF2, and compares in constant time.

Tests

Hardware exercises run via PlatformIO Unity tests under test/test_esp_crypto, including KATs for SHA-2, AES-GCM (with tag checks), HKDF, PBKDF2, JWT HS256 round-trips, and password hashing. Host-side CMake just stubs out tests (ESP-IDF primitives are unavailable when cross-compiling for CI).

Formatting Baseline

This repository follows the firmware formatting baseline from esptoolkit-template:

  • .clang-format is the source of truth for C/C++/INO layout.
  • .editorconfig enforces tabs (tab_width = 4), LF endings, and final newline.
  • Format all tracked firmware sources with bash scripts/format_cpp.sh.

License

MIT — see LICENSE.md.

ESPToolKit

About

ESPCrypto wraps the ESP32 hardware crypto blocks (SHA, AES-GCM/CTR, RSA/ECC) with guardrails, automatic fallbacks, and high-level helpers (JWTs, salted hashes)

Topics

Resources

Code of conduct

Stars

6 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Universal Dark Mode - works on any site\n(function() {\n var enabled = true;\n \n function applyDarkMode() {\n if (!enabled) return;\n \n // Create style element if it doesn't exist\n var style = document.getElementById('universal-dark-mode-style');\n if (!style) {\n style = document.createElement('style');\n style.id = 'universal-dark-mode-style';\n document.head.appendChild(style);\n }\n \n // Dark mode CSS - inverts colors but preserves images/video\n style.textContent = '\n /* Invert everything except media */\n html {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #1a1a2e !important;\n }\n \n /* Restore images, videos, iframes, canvas */\n img, video, iframe, canvas, svg, picture, [style*=\"background-image\"] {\n filter: invert(1) hue-rotate(180deg) !important;\n }\n \n /* Preserve specific elements that should not be inverted */\n .no-dark-mode, .no-dark-mode *,\n [data-theme=\"light\"], [data-theme=\"light\"],\n .ace_editor, .ace_editor *,\n .CodeMirror, .CodeMirror *,\n .monaco-editor, .monaco-editor *,\n .markdown-body pre, .markdown-body pre *,\n .highlight, .highlight *,\n pre code, pre code * {\n filter: none !important;\n }\n \n /* Fix common UI elements */\n .modal, .popup, .dropdown-menu, .tooltip, .popover {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #2d2d44 !important;\n border-color: #444 !important;\n }\n \n /* Scrollbars */\n ::-webkit-scrollbar { background: #1a1a2e !important; }\n ::-webkit-scrollbar-thumb { background: #444 !important; }\n ::-webkit-scrollbar-thumb:hover { background: #555 !important; }\n \n /* Selection */\n ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ';\n }\n \n function removeDarkMode() {\n var style = document.getElementById('universal-dark-mode-style');\n if (style) style.remove();\n }\n \n // Toggle with Alt+Shift+D\n document.addEventListener('keydown', function(e) {\n if (e.altKey && e.shiftKey && e.key === 'D') {\n e.preventDefault();\n enabled = !enabled;\n if (enabled) {\n applyDarkMode();\n console.log('[Universal Dark Mode] Enabled');\n } else {\n removeDarkMode();\n console.log('[Universal Dark Mode] Disabled');\n }\n }\n });\n \n // Apply on load\n applyDarkMode();\n \n // Re-apply on dynamic content\n var observer = new MutationObserver(function(mutations) {\n if (enabled && !document.getElementById('universal-dark-mode-style')) {\n applyDarkMode();\n }\n });\n observer.observe(document.head, { childList: true });\n \n console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle');\n})();", "Universal Dark Mode"); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })();
Skip to content
This repository was archived by the owner on Aug 3, 2026. It is now read-only.

Repository files navigation

Warning

This repository is deprecated and no longer maintained.

Search for an equivalent library under the ZekStack organization at: ZekStack/repositories

ESPCrypto

ESPCrypto wraps the ESP32 hardware crypto blocks (SHA, AES-GCM/CTR, RSA/ECC) with guardrails, automatic fallbacks, and high-level helpers (JWTs, salted hashes) that work in both ESP-IDF and Arduino builds.

CI / Release / License

CIReleaseLicense: MIT

Toolchain Compatibility

  • GitHub Actions builds against the ESP32 Arduino core 3.3.3 via Espressif's board manager URL (IDF 5.x generation) and caches the toolchains to keep PlatformIO/Arduino builds in sync for esp32, esp32-s3, esp32-c3, and esp32-p4 boards.
  • Runtime code gates the mbedTLS 2.x (ESP-IDF 4.x) and 3.x (ESP-IDF 5.x) API differences—including the ESP AES-GCM alt streaming signatures—so PlatformIO/Arduino builds succeed regardless of which ESP-IDF revision a board package ships.
  • Device fingerprinting prefers esp_read_mac from esp_mac.h when present and falls back to esp_efuse_mac_get_default, so Arduino/PlatformIO board packages that dropped esp_efuse_mac.h still build.

Features

  • SHA256/384/512 helpers that try the ESP parallel SHA engine first and fall back to mbedTLS when the accelerator (or platform) is unavailable.
  • AES-GCM and AES-CTR utilities with a safe aesGcmEncryptAuto that generates a random 12-byte IV, optional nonce-reuse debug guard, and capability introspection via ESPCrypto::caps().
  • RSA/ECC signing + verification helpers (PKCS#1 v1.5 + ECDSA) that power HS256/RS256/ES256 JWT flows or stand-alone signatures.
  • CryptoKey + KeyHandle abstractions with MemoryKeyStore, NvsKeyStore, and LittleFsKeyStore for alias/versioned key rotation plus cached mbedTLS contexts to avoid repeated parsing.
  • Device-bound HKDF helper deriveDeviceKey(...) that derives stable per-device keys from an optional persistent NVS secret plus the chip fingerprint, mainly to avoid hard-coded symmetric keys rather than to provide hardware-backed key protection.
  • Buffer-friendly span overloads for SHA digests and AES-GCM encrypt/decrypt that write into caller-provided buffers to reduce heap churn on large payloads, plus streaming contexts (ShaCtx, HmacCtx, AesCtrStream, AesGcmCtx) for chunked workloads.
  • Nonce strategies for AES-GCM auto IVs: random 96-bit (default), counter+random hybrid, or boot-counter based with optional NVS persistence to avoid reuse under long-lived keys.
  • Modern lanes: ChaCha20-Poly1305 for CPUs without AES accel, X25519 ECDH helper, and ECDSA DER↔raw helpers to interop with JOSE stacks. (Ed25519/EdDSA stay capability-gated to platform support.)
  • HMAC/HKDF/PBKDF2 (SHA-256/384/512) building blocks with policy enforcement for PBKDF2 iteration counts; password hashing uses these primitives and constant-time verification.
  • Structured CryptoStatus + CryptoResult<T> with span-friendly overloads to reduce heap churn and keep error handling uniform; SecureBuffer/SecureString zeroize sensitive data on scope exit.
  • Full JWT builder/validator that uses ArduinoJson v7 JsonDocuments, fills iat/exp/nbf fields, enforces issuer/audience, and exposes both friendly errors and structured status codes.
  • Ready-to-flash example plus Unity tests under test/test_esp_crypto with NIST/RFC vectors for SHA, AES-GCM, HKDF, PBKDF2, JWT, and password hashing regressions.

Examples

  • examples/basic_hash_and_aes – SHA plus AES-GCM with auto IV/tag handling and structured status.
  • examples/jwt_and_password – HS256 JWT creation/verification and password hashing/verification.
  • examples/advanced_primitives – Capability/policy introspection, SecureBuffer/String, HMAC/HKDF/PBKDF2, AES-CTR streaming, and RSA/ECDSA signing flows.
  • examples/keys_and_streaming – Keystore usage, streaming SHA/AES-GCM, nonce strategies, and device-bound key derivation.
  • examples/bench_crypto – Tiny on-device timing loops for SHA and AES-GCM to gauge perf per board.
  • examples/jwks_rotation – JWKS verification with rotating kid values for HS256.

The basic AES example shows SHA and AES-GCM in one go:

#include<Arduino.h>
#include<ESPCrypto.h>
#include<vector>voidsetup() {
Serial.begin(115200);
std::vector<uint8_t> key(32, 0x01);
std::vector<uint8_t> plaintext = {'h', 'e', 'l', 'l', 'o'};
String digest = ESPCrypto::shaHex("esptoolkit");
auto gcm = ESPCrypto::aesGcmEncryptAuto(key, plaintext);
if (gcm.ok()) {
auto decrypted = ESPCrypto::aesGcmDecrypt(key, gcm.value.iv, gcm.value.ciphertext, gcm.value.tag);
(void)decrypted;
}
// Release ESPCrypto runtime caches/state before deep sleep or shutdown paths.ESPCrypto::deinit();
}
voidloop() {}

Run examples/basic_hash_and_aes via PlatformIO/Arduino to see the full output.

Lifecycle and Teardown

  • ESPCrypto is static-style, so there is no instance destructor to release global runtime state.
  • Call ESPCrypto::deinit() when your app no longer needs crypto helpers (for example before deep sleep, app shutdown, or full subsystem restart).
  • deinit() is safe before any crypto call and safe to call repeatedly.
  • Use ESPCrypto::isInitialized() to check whether runtime state (policy/caches/counters) is currently active.

Key management and device-bound helpers

Cache parsed keys, rotate aliases, and derive symmetric keys without shipping long-lived secrets in firmware:

#include<ESPCrypto.h>voidrotate_keys() {
MemoryKeyStore memory;
KeyHandle current{String("jwt_auth"), 2};
// Store a PEM private key and reload it as a cached CryptoKeyconstchar *pem = "-----BEGIN PRIVATE KEY-----...";
ESPCrypto::storeKey(memory, current, CryptoSpan<constuint8_t>(reinterpret_cast<constuint8_t *>(pem), strlen(pem)));
auto loaded = ESPCrypto::loadKey(memory, current, KeyFormat::Pem, KeyKind::Private);
if (loaded.ok()) {
auto sig = ESPCrypto::rsaSign(
loaded.value,
CryptoSpan<constuint8_t>(reinterpret_cast<constuint8_t *>("payload"), 7),
ShaVariant::SHA256
);
(void)sig;
}
// Derive a device-bound symmetric key using HKDF + NVS-backed seedauto derived = ESPCrypto::deriveDeviceKey("provisioning", CryptoSpan<constuint8_t>(), 32);
if (derived.ok()) {
// use derived.value as an AES or HMAC key without embedding long-term secrets
}
}

MemoryKeyStore keeps key material only in RAM for tests or ephemeral rotations. LittleFsKeyStore stores blobs on LittleFS when mounted, and NvsKeyStore persists blobs in NVS with whatever flash/NVS protection the device is configured for. None of these backends should be treated as a secure-element substitute.

API Highlights

  • CryptoResult<std::vector<uint8_t>> shaResult(...) / shaHex(...) – SHA256/384/512 with optional hardware preference (default on) and structured status codes.
  • CryptoResult<GcmMessage> aesGcmEncryptAuto(...) + aesGcmDecrypt(...) – 128/192/256-bit AES-GCM with random IVs, optional AAD, 16-byte tags, and policy-enforced IV length; aesCtrCrypt(...) covers stream-like CTR use cases.
  • CryptoResult<std::vector<uint8_t>> rsaSign/eccSign and rsaVerify/eccVerify – Wrap mbedTLS PK contexts while enforcing minimum key sizes unless allowLegacy is enabled.
  • CryptoKey helpers for RSA/ECC reuse parsed PK contexts; pair them with KeyHandle aliases in a KeyStore to rotate versions without reparsing PEM/DER.
  • CryptoResult<void> sha(...) and aesGcmEncrypt/Decrypt(...) span overloads – write digests/ciphertext/tag into caller-owned buffers to avoid heap allocations on large payloads.
  • Streaming helpers: ShaCtx/HmacCtx for incremental hashing/HMAC, AesCtrStream for chunked CTR flows, and AesGcmCtx for AAD + payload streaming with tag verification.
  • GcmNonceOptions lets you pick random, counter+random, or boot-counter IV strategies (with optional NVS persistence) when using aesGcmEncryptAuto(...).
  • JWT additions: JWK/JWKS verification helper, leeway support, multi-audience/typ enforcement, and DER↔raw ECDSA helpers to match JOSE encodings.
  • ChaCha20-Poly1305 encrypt/decrypt helpers and X25519 shared-secret derivation for devices where AES accel varies. XChaCha20-Poly1305 and Ed25519/EdDSA APIs currently return Unsupported until the toolchain provides those primitives.
  • CryptoResult<String> createJwtResult(...) / verifyJwtResult(...) – Build HS256/RS256/ES256 JWTs with auto iat/exp fields and get back structured status plus the friendly error string versions.
  • CryptoResult<std::vector<uint8_t>> hmac/hkdf/pbkdf2 and hashString/verifyString – HMAC/HKDF/PBKDF2 building blocks; password hashes stay in the $esphash$v1$cost$salt$hash envelope and compare in constant time.
  • CryptoCaps caps() and SecureBuffer/SecureString – Introspect hardware acceleration availability and zeroize sensitive buffers on scope exit.

JWT Helpers

JwtSignOptions lets you set issuer, subject, audience, expiresInSeconds, notBefore, issuedAt, and keyId. JwtVerifyOptions can enforce issuer/audience matches, require expiration, and accept externally supplied clocks (e.g., SNTP time). Header/payload data stays as ArduinoJson v7 JsonDocuments, so you can merge them with doc.set(...) or stream them over serial for debugging. Use createJwt/verifyJwt for friendly strings or createJwtResult/verifyJwtResult for structured status codes.

verifyJwtWithJwks consumes an in-memory JWKS (JsonDocument) and picks keys by kid, with support for leeway, multi-audience payloads, typ enforcement, and crit header allowlists. ECDSA raw/DER conversion helpers are available when interoping with JOSE stacks that send compact raw signatures.

Policy & Guardrails

  • CryptoPolicy (default: RSA ≥ 2048 bits, PBKDF2 iterations ≥ 1024, GCM IV ≥ 12 bytes) is readable via ESPCrypto::policy() and adjustable with setPolicy(...); set allowLegacy = true to opt into weaker parameters.
  • AES-GCM can enable debug nonce-reuse detection via ESPCRYPTO_ENABLE_NONCE_GUARD (tiny LRU cache keyed by IV + key fingerprint).
  • constantTimeEq performs content-constant-time comparison only when both inputs already have the same length; a length mismatch returns false immediately. SecureBuffer and SecureString zeroize owned memory on cleanup.

Security Posture

  • Constant-time coverage: constantTimeEq underpins password verification and HS256 JWT checks when compared buffers are the same length; it does not hide input length. Other primitives lean on ESP-IDF/mbedTLS implementations and should be treated as best-effort constant-time rather than hardened side-channel countermeasures.
  • Hardware acceleration: SHA, AES-CTR, and AES-GCM try the ESP hardware blocks first and fall back to mbedTLS software paths; ESPCrypto::caps() reports what is active at runtime. Random bytes come from esp_fill_random on-device and from std::random_device only for host builds/tests.
  • Best-effort hardening: password hashes stay in a structured envelope with policy-enforced PBKDF2 costs, AES-GCM enforces IV length and offers an optional nonce-reuse guard, and sensitive buffers zeroize on scope exit or failure paths.
  • Threat model: aimed at network-connected ESP32-class devices where attackers can send arbitrary inputs. It does not attempt to defend against physical capture, power/EM/fault-injection side channels, or secure element/key storage requirements; review your board’s secure boot/flash encryption story separately.

Password Hashing

hashString emits $esphash$v1$<cost>$<salt>$<hash> so you can persist passwords without storing secrets. Costs map to 2^cost PBKDF2 iterations (default 10 ⇒ 1024) and will auto-bump to the policy minimum iteration count unless allowLegacy is enabled. verifyString accepts any string in that envelope, decodes the salt/hash, replays PBKDF2, and compares in constant time.

Tests

Hardware exercises run via PlatformIO Unity tests under test/test_esp_crypto, including KATs for SHA-2, AES-GCM (with tag checks), HKDF, PBKDF2, JWT HS256 round-trips, and password hashing. Host-side CMake just stubs out tests (ESP-IDF primitives are unavailable when cross-compiling for CI).

Formatting Baseline

This repository follows the firmware formatting baseline from esptoolkit-template:

  • .clang-format is the source of truth for C/C++/INO layout.
  • .editorconfig enforces tabs (tab_width = 4), LF endings, and final newline.
  • Format all tracked firmware sources with bash scripts/format_cpp.sh.

License

MIT — see LICENSE.md.

ESPToolKit

About

ESPCrypto wraps the ESP32 hardware crypto blocks (SHA, AES-GCM/CTR, RSA/ECC) with guardrails, automatic fallbacks, and high-level helpers (JWTs, salted hashes)

Topics

Resources

Code of conduct

Stars

6 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages