Verify an attested memory's content hash and signature against a public key.
(
node: &MemoryNode,
public_key: &atomic_identity::keypair::PublicKey,
)
| 96 | |
| 97 | /// Verify an attested memory's content hash and signature against a public key. |
| 98 | pub fn verify_memory( |
| 99 | node: &MemoryNode, |
| 100 | public_key: &atomic_identity::keypair::PublicKey, |
| 101 | ) -> Result<()> { |
| 102 | proof::verify_memory(node, public_key) |
| 103 | } |
no outgoing calls