Skip to content

Commit

Permalink
Add merkletree package
Browse files Browse the repository at this point in the history
- Part of #32 and #26
  • Loading branch information
masomel committed Aug 20, 2016
1 parent 4aaf1ec commit 0fa3fb9
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ The pckages in this library implement the various components of the CONIKS syste
- `coniks_server`: Prototype key server
- `coniks_test_client`: Prototype client CLI
- `crypto`: Cryptographic algorithms and operations
- `merkletree`: Merkle prefix tree and Persistent Authenticated Dictionary
- `util`: Utility functions

The `protos` directory contains the Protocol Buffer message definitions
Expand Down
23 changes: 23 additions & 0 deletions merkletree/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.coniks</groupId>
<artifactId>coniks-java</artifactId>
<version>1.3-SNAPSHOT</version>
</parent>

<groupId>org.coniks.merkletree</groupId>
<artifactId>coniks-merkletree</artifactId>
<version>1.3-SNAPSHOT</version>
<packaging>jar</packaging>

<name>CONIKS [Merkle Tree]</name>
<url>http://coniks.org</url>
<description>
Merkle prefix tree and Persistent Authenticated Dictionary library for CONIKS.
</description>

</project>

0 comments on commit 0fa3fb9

Please sign in to comment.