forked from mami-project/KeyServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from cne/develop
KeyServer v0.2.3
- Loading branch information
Showing
23 changed files
with
953 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
# KeyServer Change Log | ||
|
||
v0.2.3 | ||
-------------------------------------------------------------------------------- | ||
Features: | ||
- Multiple JSON processing on same TLS session. | ||
- Improved security with IP access control. | ||
- Support more cipher suites on https server. | ||
- KeyServer Configuration more parametric. | ||
- Include KeyServer Private Key provider tool. | ||
|
||
v0.1.3 | ||
-------------------------------------------------------------------------------- | ||
Features: | ||
- KeyServer accepts multiples connections (system default limited). | ||
- KeyServer log to a file. | ||
- KeyServer log to a file. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<name>KeyServer</name> | ||
<url>https://pdihub.hi.inet/cne/cne-keyserver</url> | ||
<modelVersion>4.0.0</modelVersion> | ||
<!-- The Basics --> | ||
<groupId>es.tid.keyserver</groupId> | ||
<artifactId>keyserver</artifactId> | ||
<version>v0.1.3</version> | ||
<artifactId>KeyServer</artifactId> | ||
<version>v0.2.3</version> | ||
<packaging>jar</packaging> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<maven.compiler.source>1.7</maven.compiler.source> | ||
<maven.compiler.target>1.7</maven.compiler.target> | ||
</properties> | ||
|
||
<developers> | ||
<developer> | ||
<id>jgm221</id> | ||
<name>Javier Gusano Martinez</name> | ||
<email>[email protected]</email> | ||
<properties> | ||
<active>true</active> | ||
</properties> | ||
</developer> | ||
<developer> | ||
<id>jgm1986</id> | ||
<name>Javier Gusano Martinez</name> | ||
<email>[email protected]</email> | ||
<properties> | ||
<active>true</active> | ||
</properties> | ||
</developer> | ||
<developer> | ||
<id>oscargdd</id> | ||
<name>Oscar Gonzalez de Dios</name> | ||
<email>[email protected]</email> | ||
<properties> | ||
<active>true</active> | ||
</properties> | ||
</developer> | ||
</developers> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>redis.clients</groupId> | ||
|
@@ -62,7 +28,7 @@ | |
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
<version>1.7.12</version> | ||
<version>1.7.7</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.qos.logback</groupId> | ||
|
@@ -76,6 +42,13 @@ | |
</dependency> | ||
</dependencies> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
</properties> | ||
|
||
<!-- Build Settings --> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
|
@@ -90,8 +63,13 @@ | |
</archive> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-project-info-reports-plugin</artifactId> | ||
<version>2.8.1</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<version>2.6</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
|
@@ -120,4 +98,44 @@ | |
</resource> | ||
</resources> | ||
</build> | ||
|
||
<!-- More Project Information --> | ||
<name>KeyServer</name> | ||
<description>This tool is a Key Server software that implements the collaborative Solution API. It is intended to run in the Content Provider network. It is used to storage private keys from the Content Provider and reply to queries from the MSP Collaborative API.</description> | ||
<url>https://github.com/mami-project/KeyServer</url> | ||
<inceptionYear>2016</inceptionYear> | ||
<licenses> | ||
<license> | ||
<name>Apache License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>manual</distribution> | ||
<comments>License pending to determine.</comments> | ||
</license> | ||
</licenses> | ||
<developers> | ||
<developer> | ||
<id>jgm1986</id> | ||
<name>Javier Gusano Martinez</name> | ||
<email>[email protected]</email> | ||
<organization>Hewlett-Packard Enterprise</organization> | ||
<organizationUrl>https://www.hpe.com</organizationUrl> | ||
<timezone>(UTC+01:00) Brussels, Copenhagen, Madrid, Paris</timezone> | ||
</developer> | ||
</developers> | ||
|
||
<contributors> | ||
<contributor> | ||
<name>Oscar Gonzalez de Dios</name> | ||
<email>[email protected]</email> | ||
<organization>Telefonica</organization> | ||
<organizationUrl>http://www.tid.com</organizationUrl> | ||
<timezone>(UTC+01:00) Brussels, Copenhagen, Madrid, Paris</timezone> | ||
</contributor> | ||
</contributors> | ||
|
||
<!-- Environment Settings --> | ||
<issueManagement> | ||
<system>GitHub</system> | ||
<url>https://github.com/mami-project/KeyServer/issues</url> | ||
</issueManagement> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.