b0529bc943
This commit provides a method to verify that firmware has been signed with a private key given its public key. The implementation uses ed25519-dalek as the signature verifier. An "ed25519" feature is required to enable the functionality. When disabled (the default), calling the firmware updater's verify method will return a failure.
26 lines
1.1 KiB
TOML
26 lines
1.1 KiB
TOML
[package]
|
|
edition = "2021"
|
|
name = "embassy-boot-nrf-examples"
|
|
version = "0.1.0"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
embassy-sync = { version = "0.1.0", path = "../../../../embassy-sync" }
|
|
embassy-executor = { version = "0.1.0", path = "../../../../embassy-executor", features = ["nightly", "integrated-timers"] }
|
|
embassy-time = { version = "0.1.0", path = "../../../../embassy-time", features = ["nightly"] }
|
|
embassy-nrf = { version = "0.1.0", path = "../../../../embassy-nrf", features = ["time-driver-rtc1", "gpiote", "nightly"] }
|
|
embassy-boot = { version = "0.1.0", path = "../../../../embassy-boot/boot" }
|
|
embassy-boot-nrf = { version = "0.1.0", path = "../../../../embassy-boot/nrf" }
|
|
embassy-embedded-hal = { version = "0.1.0", path = "../../../../embassy-embedded-hal" }
|
|
|
|
defmt = { version = "0.3", optional = true }
|
|
defmt-rtt = { version = "0.4", optional = true }
|
|
panic-reset = { version = "0.1.1" }
|
|
embedded-hal = { version = "0.2.6" }
|
|
|
|
cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
|
|
cortex-m-rt = "0.7.0"
|
|
|
|
[features]
|
|
ed25519-dalek = ["embassy-boot/ed25519-dalek"]
|
|
ed25519-salty = ["embassy-boot/ed25519-salty"] |