Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 1.2 KB

README.md

File metadata and controls

36 lines (22 loc) · 1.2 KB

PlgxUnpacker.NET

A lightweight library for unpacking KeePass PLGX files.

NuGet Version (PlgxUnpacker.NET) MIT License

Usage

if (PlgxFile.IsPlgxFile(filePath))
{
	var plgxFile = PlgxFile.LoadFromFile(filePath);
	plgxFile.UnpackTo(directoryPath);
}

Repository

The main repository is hosted on GitHub.

Changelog

See CHANGELOG file for details.

License

PlgxUnpacker is released under the MIT License. See the bundled LICENSE file for details.

Credits

The idea for this library was inspired by PlgxExtractor.

Related Projects