https://github.com/xp-forge/keepass
KeePass databases
https://github.com/xp-forge/keepass
keepass-database php xp-framework
Last synced: about 1 month ago
JSON representation
KeePass databases
- Host: GitHub
- URL: https://github.com/xp-forge/keepass
- Owner: xp-forge
- Created: 2016-07-13T08:02:53.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-03-24T11:37:38.000Z (about 1 year ago)
- Last Synced: 2025-03-12T23:02:12.476Z (2 months ago)
- Topics: keepass-database, php, xp-framework
- Language: PHP
- Size: 68.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
Awesome Lists containing this project
README
KeePass databases
=================[](https://github.com/xp-forge/keepass/actions)
[](https://github.com/xp-framework/core)
[](https://github.com/xp-framework/core/blob/master/LICENCE.md)
[](http://php.net/)
[](http://php.net/)
[](https://packagist.org/packages/xp-forge/keepass)Read access to KeePass database files.
Example
-------```php
use info\keepass\{KeePassDatabase, Key};
use io\streams\FileInputStream;
use util\cmd\Console;$db= KeePassDatabase::open(new FileInputStream('database.kdbx'), new Key('passphrase'));
Console::writeLine($db);// Show top-level groups and password entries inside these
foreach ($db->groups() as $group) {
foreach ($group->passwords() as $name => $password) {
Console::writeLine($name, ': ', $password);
}
}
$db->close();
```See also
--------
http://keepass.info/