Verify an attested Intent node — thin wrapper over [`verify_value`].
(node: &CanonicalNode, public_key: &PublicKey)
| 168 | |
| 169 | /// Verify an attested Intent node — thin wrapper over [`verify_value`]. |
| 170 | pub fn verify(node: &CanonicalNode, public_key: &PublicKey) -> Result<()> { |
| 171 | verify_value(&node.to_value(), public_key) |
| 172 | } |
| 173 | |
| 174 | /// Produce a fully attested Memory node — the same thin wrapper over |
| 175 | /// [`attest_value`] the Intent path uses, so both node types sign through one |
nothing calls this directly
no test coverage detected