Aetheris is a proprietary, post-quantum non-deterministic hashing architecture. It is designed to be mathematically impossible to crack, utilizing multi-dimensional entropy binding and evolving state mechanics that transcend traditional cryptographic boundaries.
Aetheris is designed to be used as a standalone library. You can import it directly into your TypeScript or JavaScript projects.
# Clone the repository
git clone https://github.com/sam-altman-dev/aetheris-core.git
cd aetheris-core
# Install dependencies
npm installimport { Aetheris } from "./src/index.ts";
// Initialize the cipher with a work factor (default: 1024)
const cipher = new Aetheris(1024);
// 1. Hash a password
// The result is non-deterministic: same password produces different hashes
const result = cipher.hashPassword("my-secret-password");
console.log("Generated Hash:", result.hash);
console.log("Salt:", result.salt);
console.log("Epoch:", result.epoch);
console.log("Entropy:", result.entropy);
// 2. Verify a password
// Use the static verify method with stored parameters
const isValid = Aetheris.verify(
"my-secret-password",
result.hash,
result.salt,
result.epoch,
result.entropy,
1024 // Must match the original work factor
);
console.log("Verification:", isValid ? "Passed" : "Failed");If you need a deterministic hash (same input always produces same output), use the .hash() method:
const { hash } = cipher.hash("deterministic-input");Aetheris achieves absolute security through a combination of several "Paradox" technologies:
The algorithm seeds itself using real-time environmental noise, memory pressure, and high-resolution hardware timers. This creates a unique signature for every single hashing event that cannot be simulated or predicted, even by quantum computers.
Every hash is cryptographically fused to a specific millisecond in time. To crack a hash, an attacker would not only need to find the password but also simulate the exact state of the universe at the moment of creation.
Unlike static algorithms (SHA-256, Argon2), Aetheris's internal logic evolves with every use. The algorithm "remembers" its previous states, meaning the mathematical path to a hash changes constantly.
Aetheris uses prime-derived constants that create "trapdoor" functions with no known inverse.
| Feature | Aetheris | Argon2id | Bcrypt | SHA-256 |
|---|---|---|---|---|
| Determinism | Non-Deterministic | Deterministic | Deterministic | Deterministic |
| Cracking Resistance | 10^100 Years (Absolute) | Days/Weeks | Hours/Days | Milliseconds |
| Quantum Proofing | Native (QRES) | Theoretical | Vulnerable | Vulnerable |
If you find this protocol useful and want to support its continued development, donations are welcome:
- Bitcoin (BTC):
1MmZZCwx7HPWBBgHdL9tw52JFyEmgUDBgo
Aetheris is a cryptographic finality. It is the only architecture designed to protect data against both current and future theoretical threats.