Veritag combines physical cryptographic signatures with decentralized ledger technology to create a multi-layered defense against counterfeiting.
class VeritagSecure {
constructor(productID) {
this.id = productID;
this.ledger = "BLOCKCHAIN_v2";
}
async verifyHardware() {
const chipSignature = await NFC.readAuth();
const isAuthentic = await this.validate(chipSignature);
return isAuthentic ? "GENUINE" : "ALERT_OWNER";
}
}
Our tags utilize Physical Unclonable Functions (PUF). Like a human fingerprint, no two chips are identical, making digital or physical cloning mathematically impossible.
Every authentication event is hashed and stored on a private, high-throughput blockchain. Zero-knowledge proofs ensure consumer privacy while maintaining total transparency.
Machine learning models analyze scan patterns. If a single ID is scanned in London and New York within the same hour, Veritag automatically flags a "Global Clone Alert."
Robust REST APIs and SDKs for iOS, Android, and Web. Integrate Veritag verification into your existing e-commerce or logistics software in days, not months.
GET /v1/verify/tag_0x442
Authorization: Bearer ●●●●●●
>> 200 OK { "valid": true }
| Feature | Veritag Standard | Veritag Enterprise |
|---|---|---|
| Encryption | AES-128 | ECC (Elliptic Curve) |
| Verification Speed | < 800ms | < 300ms |
| Data Storage | Centralized Encrypted | Hyperledger Blockchain |
| Cloning Protection | Dynamic URL | NXP SUN Authentication |