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