aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2025-06-30 00:18:44 +0200
committerDario Nieuwenhuis <[email protected]>2025-07-04 00:23:22 +0200
commit84cc949df649c9b3625a65c2cc14e09155deeede (patch)
tree5db9214aa93aea446355eb500860ecc089559f66 /tests
parent00b2567fbf6b264a77dbe63ca2424939957f3128 (diff)
stm32/dma: fix packing/unpacking not working.
Diffstat (limited to 'tests')
-rw-r--r--tests/stm32/src/bin/cryp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stm32/src/bin/cryp.rs b/tests/stm32/src/bin/cryp.rs
index 028775ac8..f54c99cc3 100644
--- a/tests/stm32/src/bin/cryp.rs
+++ b/tests/stm32/src/bin/cryp.rs
@@ -72,7 +72,7 @@ async fn main(_spawner: Spawner) {
72 defmt::assert!(encrypt_tag == payload_vec[ciphertext.len()..ciphertext.len() + encrypt_tag.len()]); 72 defmt::assert!(encrypt_tag == payload_vec[ciphertext.len()..ciphertext.len() + encrypt_tag.len()]);
73 73
74 // Decrypt in software using AES-GCM 128-bit 74 // Decrypt in software using AES-GCM 128-bit
75 let _ = cipher.decrypt_in_place(&iv.into(), &aad, &mut payload_vec); 75 cipher.decrypt_in_place(&iv.into(), &aad, &mut payload_vec).unwrap();
76 76
77 info!("Test OK"); 77 info!("Test OK");
78 cortex_m::asm::bkpt(); 78 cortex_m::asm::bkpt();