Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore: fix typo
  • Loading branch information
phrwlk authored Aug 21, 2025
commit eb83d2bf90471058bbffe0b6eda20dde7652ae6b
2 changes: 1 addition & 1 deletion src/test_framework/kem_interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ where
let k1_prime = T::decap(&dk1, &c1).unwrap();
let k2_prime = T::decap(&dk1, &c2).unwrap();
assert_ne!(k1_prime, k2_prime);
// Repeat decap() to ensure the's no bad internal state-management.
// Repeat decap() to ensure there's no bad internal state-management.
assert_eq!(k1_prime, T::decap(&dk1, &c1).unwrap());
assert_eq!(k2_prime, T::decap(&dk1, &c2).unwrap());
}
Expand Down