Prove your AI's actions are authentic
Your agent just deployed to production. Can you cryptographically prove it was YOUR agent, and that the action wasn't tampered with in transit?
- Every agent gets an Ed25519 keypair on registration
- Sign actions server-side — private key never leaves the vault
- Verify from anywhere with the agent's public key
# pip install eqhoids from eqhoids import EqhoIDs client = EqhoIDs(api_key="eqhoai_sk_YOUR_KEY") # 1. Register an agent — gets Ed25519 keypair agent = client.trust.register_agent("deploy-bot", agent_type="developer") # 2. Sign an action before executing it action = {"action": "deploy", "env": "prod"} sig = client.trust.sign(agent["agent_id"], action) # 3. Verify anywhere — different service, same truth result = client.trust.verify(agent["agent_id"], action, sig["signature"]) assert result["valid"] # True