Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

60 Commits

Repository files navigation

KeePass databases

Build status on GitHubXP Framework ModuleBSD LicenceRequires PHP 7.0+Supports PHP 8.0+Latest Stable Version

Read access to KeePass database files.

Example

useinfo\keepass\{KeePassDatabase, Key};
useio\streams\FileInputStream;
useutil\cmd\Console;
$db= KeePassDatabase::open(newFileInputStream('database.kdbx'), newKey('passphrase'));
Console::writeLine($db);
// Show top-level groups and password entries inside theseforeach ($db->groups() as$group) {
foreach ($group->passwords() as$name => $password) {
Console::writeLine($name, ': ', $password);
}
}
$db->close();

See also

http://keepass.info/

About

KeePass databases

Topics

Resources

Stars

2 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages