• Stars
    star
    134
  • Rank 270,145 (Top 6 %)
  • Language
    Java
  • License
    Apache License 2.0
  • Created almost 10 years ago
  • Updated almost 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

[Deprecated] A java library for reading and writing KeePass databases. It is an intuitive java library that supports KeePass 2.x database files.

DEPRECATED - unfortunately no longer actively maintained, because I don't have time

Build Status

openkeepass

openkeepass is a java library for reading and writing KeePass databases. It is an intuitive java library that supports KeePass 2.x database files.

Only KeePass files created with version 2.x are supported. KeePass files created with version 1.x are NOT supported.

Features included so far:

  • Reading and writing support for KeePass 2.x
  • Password or Keyfile credentials: openkeepass can open password protected databases as well as keyfile protected databases.
  • Android Support: Will run on Android devices.
  • Easy to learn API: openkeepass has a simple API with convenient methods that makes it easy to read data from a KeePass database.
  • Very lean: openkeepass tries to keep the necessary dependencies to an absolute minimum.
  • Backward compatible until Java 6

Installation

The easiest way is to add openkeepass as a maven dependency.

<dependency>
    <groupId>de.slackspace</groupId>
	<artifactId>openkeepass</artifactId>
    <version>0.8.1</version>
</dependency>

Prerequisites

Before using this library make sure that you have the Java Cryptography Extension (JCE) installed on your system.

You can download JCE here:

Android

Android users should apply the following dependency to avoid an error regarding build-in xml libraries:

compile ('de.slackspace:openkeepass:0.6.0') {
    exclude module: 'stax'
    exclude module: 'stax-api'
    exclude module: 'xpp3'
}

Examples for reading

The basic usage is very simple. This example will show you how to retrieve all entries and the top groups of the KeePass database.

    // Open Database
	KeePassFile database = KeePassDatabase.getInstance("Database.kdbx").openDatabase("MasterPassword");
		
	// Retrieve all entries
	List<Entry> entries = database.getEntries();
	for (Entry entry : entries) {
		System.out.println("Title: " + entry.getTitle() + " Password: " + entry.getPassword());
	}

	// Retrieve all top groups
	List<Group> groups = database.getTopGroups();
	for (Group group : groups) {
		System.out.println(group.getName());
	}

You can also search for specific entries in the database:

	// Search for single entry
	Entry sampleEntry = database.getEntryByTitle("Sample Entry");
	System.out.println("Title: " + sampleEntry.getTitle() + " Password: " + sampleEntry.getPassword());

	// Search for all entries that contain 'Sample' in title
	List<Entry> entriesByTitle = database.getEntriesByTitle("Sample", false);
	for (Entry entry : entriesByTitle) {
		System.out.println("Title: " + entry.getTitle() + " Password: " + entry.getPassword());
	}

Open a database with a key file:

	// Open database with keyfile
	KeePassFile database = KeePassDatabase.getInstance("DatabaseProtectedByKeyfile.kdbx").openDatabase(new File("Keyfile.key"));
		
	// Print all entries		
	List<Entry> entries = database.getEntries();
	for (Entry entry : entries) {
		System.out.println(entry.getTitle() + ":" + entry.getPassword());
	}

Retrieve custom string fields (Advanced tab) from a database:

	// Retrieve all properties including custom string fields of an entry
	Set<Property> properties = database.getEntryByTitle("1st Entry").getProperties();
	for (Property property : properties) {
		System.out.println(property.getKey() + ":" + property.getValue());
	}

For more usages have a look into the unit test classes.

Examples for writing

If you want to start writing a new KeePass file from scratch you first have to build up your database model. This will be done using the provided builders. After the model has been constructed you can use the KeePassDatabase class to write the KeePass database to a stream.

	// Build KeePass model
	Group root = new GroupBuilder()
					.addEntry(new EntryBuilder("First entry").username("Peter").password("Peters secret").build())
					.addGroup(new GroupBuilder("Banking")
							.addEntry(new EntryBuilder("Second entry").username("Paul").password("secret").build())
							.build())
					.build();
				
	KeePassFile keePassFile = new KeePassFileBuilder("writingDB")
					.addTopGroups(root)
					.build();
				
	// Write KeePass file to disk
	KeePassDatabase.write(keePassFile, "MasterPassword", new FileOutputStream("Database.kdbx"));

For more usages have a look into the unit test classes.

More Repositories

1

slackspace-angular-spring-keycloak

Sample project which shows how to implement a secured AngularJS/Spring-Boot application secured by Keycloak.
Java
38
star
2

slackspace-springrolesandpermissions

Sample project which shows how to implement roles and permissions with Spring-Security 3.
Java
20
star
3

slackspace-angular2-spring-keycloak

Sample project which shows how to implement a secured Angular 2/Spring-Boot application secured by Keycloak.
TypeScript
19
star
4

Lychee-RSS

This is a plugin for lychee which creates an RSS-Feed out of your photos.
PHP
7
star
5

slackspace-modular-jpa-persistence

Sample Project which shows how to build a modular project with JPA persistence from dependency jar files.
Java
6
star
6

alfa

Azure logfile analyzer - can be used to fetch WADLogs table from windows azure platform and push to elasticsearch.
Java
4
star
7

slackspace-javaee-classpath-properties

Sample project which shows how to inject properties into Java EE applications
Java
4
star
8

slackspace-customlogin

Sample Project which shows how to build a custom login page with JSF and Spring-Security 3.
Java
4
star
9

BusinessManager

Java
3
star
10

slackspace-querydsl

Sample project which shows how to use QueryDSL.
Java
2
star
11

slackspace-mavenprofiles

Sample Project which shows how create different maven profiles for different environments..
Java
2
star
12

slackspace-springtestrequestscope

Sample project which shows how to test Request-Scoped Beans with Spring
Java
2
star
13

vagrant-java-dev

A vagrant environment for JavaEE development
Shell
1
star
14

wfail2ban

A fail2ban clone for windows.
Java
1
star
15

qspriter

Qspriter is a sprite generator for the Quintus Html5 game engine
Java
1
star
16

pegdownconsole

A console application that wraps the 'pegdown' processor for Markdown. With the console you can convert your Markdown files into Html files.
Java
1
star
17

slackspace-continuous-delivery

Sample project which shows continuous delivery with Jenkins and Docker.
Shell
1
star
18

slackspace-javaee-security

Sample Project which shows how to create a JDBC security realm with Glassfish 3.1 and Java EE 6.
Java
1
star