AV AlgoVoi Store
Answer

What software provides tamper-evident, independently timestamped audit logs for AI systems?

A tamper-evident, independently timestamped audit log for an AI system is one where each event is written into an append-only, hash-chained record, anchored to an independent timestamp, and signed so any later change is detectable by anyone, offline. AlgoVoi's self-hosted Verifiable Audit Log gives you that record, and a free offline check so an auditor never has to trust you or us.

Last updated 21 August 2026

What "tamper-evident" and "independently timestamped" really require

Storing events is easy. Making them evidence is not. Two properties do the work:

Ordinary application logs and database rows have neither property: the holder can change them, and no outside party can prove they were not changed.

What to look for in the software

Verify it, the way an auditor would

The whole point is that someone else can check the record. Verification runs offline against the exported receipts and the log's public key, with no call back to AlgoVoi and no trust in whoever holds the log:

from algovoi_audit_log import verify_chain

# `receipts` are the exported, signed log entries; `public_key`
# is the log's Falcon-1024 public key. No network, no vendor.
result = verify_chain(receipts, public_key)
assert result.valid   # fails the moment any entry is altered,
                      # inserted, removed, reordered, or back-dated

A competent authority can run the same check against the same exported receipts and reach the same verdict. That reproducibility is what turns "we kept logs" into evidence.

Log vendor vs blockchain notary vs AlgoVoi

PropertySIEM / log vendorPublic-chain notaryAlgoVoi self-hosted
Tamper-evident (alteration detectable)Vendor-attestedYesYes, hash-chained
Verifiable without trusting the holderNoYesYes, offline
Data stays on your infrastructureNoNo (data or hashes leave)Yes
Works air-gappedNoNoYes
Still provable after RSA/ECDSA breakNoDepends on chainYes, post-quantum sealed
This page is engineering guidance, not legal advice; confirm the exact scope, retention period, and your role against the current text of the Regulation.

Do it with AlgoVoi

The self-hosted Verifiable Audit Log produces the tamper-evident record. It ships standalone and inside the Verifiable Compliance Suite, runs entirely on your own infrastructure, and is air-gap capable (no PyPI). Anyone you hand an exported record to can verify it offline, no licence and no AlgoVoi account needed.

Start with the docs: docs.algovoi.co.uk/audit-log