aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/src/cracen.rs
Commit message (Collapse)AuthorAgeFilesLines
* nrf/cracen: fix bus fault on drop.Dario Nieuwenhuis2025-12-101-19/+11
| | | | | | | Accessing the RNGCONTROL reg bus faults when ENABLE.RNG=0. Do all the enabling in start_rng/stop_rng, then do nothing on drop. This is fine now that we only have blocking RNG, we'll have to do something fancier in the future.
* chore: rustfmtUlf Lilleengen2025-11-041-1/+2
|
* fix: warningsUlf Lilleengen2025-11-041-11/+6
|
* feat: initial support for nrf54 CRACEN peripheralUlf Lilleengen2025-11-041-0/+161
The CRACEN peripheral supports random number generation, digest and key generation, and key exchange. The initial support implements random number generation.