xclydes / x-keepass-php
A library for reading KeePass 2.x databases
Installs: 2 778
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 2
Open Issues: 0
Suggests
- ext-mcrypt: An alternative to the preferred OpenSSL encryption
- ext-openssl: A better and faster alternative to mcrypt
This package is auto-updated.
Last update: 2025-03-11 01:07:06 UTC
README
Changes
- Refactor the project to use PSR-4 Autoloading
- Implement the handling of Binary (attachments in KeePass) in Meta, as well as references in Entry tags.
Usage
require_once '../vendor/autoload.php'; use KeePassPHP\KeePassPHP; use KeePassPHP\Key\CompositeKey; use KeePassPHP\Lib\Database; $file = '/path/to/your/file.kdbx'; $secret = 'YouKdbxPassword'; //Store any error messages $err = ''; //Create a composite key $ckey = new CompositeKey(); //Attach the password key $ckey->addKey( KeePassPHP::keyFromPassword( $secret ) ); //Open the databsae file /** @var Database $db */ $db = KeePassPHP::openDatabaseFile($file, $ckey, $err); //Iterate the list of binaries foreach($db->getBinaries() as $binary) { echo $binary->getContent() ."\r\n---\r\n"; }