
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@dfinity/certificate-verification
Advanced tools
Client side certificate verification for the Internet Computer
Certificate verification on the Internet Computer is the process of verifying that a canister's response to a query call has gone through consensus with other replicas hosting the same canister.
This package partially encapsulates the protocol for such verification. It performs the following actions:
In the following example, canister
is an actor created with @dfinity/agent-js
for a canister with the following candid:
type certified_response = record {
"data" : nat32;
"certificate" : blob;
"witness" : blob;
};
service : {
"get_data" : () -> (certified_response) query;
};
Check ic-certification for details on how to create certificate
and witness
inside your canister.
calculateDataHash
is a userland provided function that can calculate the hash of the data returned from the canister. This must be calculated in the same way on the canister and the frontend.
const { data, certificate, witness } = await canister.get_data();
const tree = await verifyCertification({
canisterId: Principal.fromText(canisterId),
encodedCertificate: new Uint8Array(certificate).buffer,
encodedTree: new Uint8Array(witness).buffer,
rootKey: agent.rootKey,
maxCertificateTimeOffsetMs: 50000,
});
const treeDataHash = lookup_path(['count'], tree);
const responseDataHash = calculateDataHash(data);
if (treeDataHash !== responseDataHash) {
// The data returned from the canister does not match the certified data.
}
See the certified counter example for a full e2e example of how to create a certification and verify it using this package.
3.0.3 (2025-02-04)
FAQs
Client side certificate verification for the Internet Computer
We found that @dfinity/certificate-verification demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 12 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.