Download the PHP package daggerx/password-hasher without Composer
On this page you can find all versions of the php package daggerx/password-hasher. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download daggerx/password-hasher
More information about daggerx/password-hasher
Files in daggerx/password-hasher
Package password-hasher
Short Description Ultra-secure password hashing and encryption library.
License MIT
Informations about the package password-hasher
🔥 DaggerX V3 — The Fastest, Strongest, PHP Security Library 🔥
DaggerX is an open-source password hashing and encryption library designed for unbreakable security. It ensures that even the platform owner cannot decrypt data without the correct secret key. With V3, DaggerX is now the fastest, strongest security library for PHP developers, offering key rotation, dual encryption modes, and optimized performance without compromising security.
🚀 What's New and Added in V3
✅ Key Rotation Support —
- Seamlessly rotate your developer key (
$devKey
) for both password hashes and encrypted messages. - Protect against long-term key compromise with
rotateHashKey()
androtateEncryptionKey()
.
✅ Dual Encryption Modes —
- AES-256-GCM: Authenticated encryption with Additional Authenticated Data (AAD) support.
- AES-256-CBC: Confidentiality with HMAC (SHA3-512) for integrity, for compatibility with legacy systems.
✅ Optimized for Speed —
- Reduced Argon2id defaults: Memory Cost to 64 MB (from 128 MB), Time Cost to 3 iterations (from 5).
- Still exceeds OWASP security recommendations while being faster for real-world use.
✅ Enhanced Security —
- Deterministic key derivation with SHA3-512 for both hashing and encryption.
- HMAC (SHA3-512) for AES-256-CBC ensures integrity.
✅ Session-Based Entropy (New) —
- New function
setSessionUsage()
for incorporating session IDs or random bytes for better entropy. - Toggle session usage based on environment (CLI or Web).
✅ Argon2id Customization (New) —
- Added support for customizing Argon2id parameters such as
memory_cost
,time_cost
, andthreads
. - Optimize for your hardware and security needs.
✅ Key Derivation Separation (New) —
- Separate key derivation logic for hashing and encryption.
- Improves maintainability and modularity.
✅ Feared by Attackers —
- Combines Argon2id, AES-256, and SHA3-512 with key rotation to create an impenetrable security layer.
- A library that attackers will dread facing.
Installation (For PHP Developers)
Install via Composer:
Include in your project:
Hashing a Password
Verifying a Password
Encrypting a Message (AES-256-GCM with AAD)
Encrypting a Message (AES-256-CBC)
Decrypting a Message
Rotating a Hash Key
Rotating an Encryption Key
Customizing Argon2id Parameters for Performance
Example: Login and Registration System
DaggerX v3.0.0 can be used to create a secure login and registration system where: Passwords are hashed using hashPassword and verified with verifyPassword.
Sensitive data (e.g., the user's name) is encrypted with encryptMessage during registration and decrypted with decryptMessage during login.
Database Schema
Create a users table to store user data: sql
Important Notes on Column Lengths:
The password column should be atleast VARCHAR(1024) to accommodate the full base64-encoded hash (typically ~350-400 characters). A shorter length (e.g., VARCHAR(255)) will truncate the hash, causing verifyPassword to fail.
The name column should be atleast VARCHAR(512) to store the base64-encoded encrypted name, which can be longer than the plaintext name (e.g., ~160 characters for a short name like "John Doe").
Registration Example (register.php)
Login Example (login.php)
Logout Example (logout.php)
Key Considerations Session Usage: DaggerX v3.0.0 uses session IDs for entropy in password hashing by default. If the session ID changes between registration and login, verification will fail. Disable session usage with DaggerX::setSessionUsage(false) unless you can ensure session consistency (e.g., by persisting the session cookie across requests).
Developer Key: The $devKey must be the same for both hashing/verification and encryption/decryption. Store it securely (e.g., in an environment variable) and ensure it's consistent across your application.
Database Column Lengths: Ensure the password column is atleast (1024) and the name column (if encrypted) should be atleast (512) to avoid truncation issues, which can cause login failures.
Why Choose DaggerX?
Unbreakable Security:
- Argon2id for memory-hard password hashing.
- AES-256-GCM and AES-256-CBC for encryption, with SHA3-512 key derivation.
- HMAC (SHA3-512) for CBC mode integrity.
Key Rotation:
- Rotate keys without data loss to mitigate key compromise risks.
Dual Encryption Modes:
- AES-256-GCM for authenticated encryption with AAD support.
- AES-256-CBC with HMAC for compatibility and integrity.
Optimized Performance:
- Faster Argon2id parameters for real-world use without sacrificing security.
- Hardware-accelerated AES encryption for speed.
Session-Based Entropy:
- Improved randomness using session IDs or random bytes.
Feared by Attackers:
- A combination of modern cryptography, key rotation, and robust design makes DaggerX a nightmare for attackers.
Support DaggerX Development
DaggerX is free and open-source. If you find it useful, consider donating to support future development!
BTC Wallet Address:
[bc1qlza24cwwxlmtxm87lq7hltkya93aff6d5q496p]
Every donation helps keep DaggerX secure, fast, and feared by attackers for everyone.
Made with ❤️ by the DaggerX Team.
https://daggerx.vercel.app/