()
| 136 | |
| 137 | #[test] |
| 138 | fn content_hash_is_deterministic() { |
| 139 | let a = lift_intent(&frontmatter(), BODY).unwrap(); |
| 140 | let b = lift_intent(&frontmatter(), BODY).unwrap(); |
| 141 | assert_eq!(a.compute_content_hash(), b.compute_content_hash()); |
| 142 | } |
| 143 | |
| 144 | #[test] |
| 145 | fn tampering_a_signed_field_breaks_verification() { |
nothing calls this directly
no test coverage detected