This repository has been archived by the owner on Mar 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Remote Attestation with CMC and tpm2d support (#540)
* Current CMC RAT implementation state * Disabled local maven repository * Adapted idscp2server URI in XML, cleanup * Added RA suite properties * Fixed code style, added PCR mask config property * Removed tpm2d stuff, updated IDSCP2 and CMC adapter * Fixed RA suite properties/parameters * Separate RA suites for client/server * Implemented jul (java.util.logging) to log4j, local maven repo workaround * Provide locally patched CMC RA adapter * Code style fixes and license fix * Added/documented app default properties * Updated netty due to CVE-2021-43797 * Replaced Docker layer with config by volume mount in docker-compose.yml * Disabled IDSCP2 by default and provided documentation * Removed local artifacts as Maven Central is back up for now * docs: update README.md * chore(deps): bump camel-idscp2 from 0.8.1 to 0.9.0 * chore(deps): bump camel-idscp2 from 0.9.0 to 0.9.1 * docs: update configuration.md and CHANGELOG.md * chore(deps): bump camel-idscp2 from 0.9.1 to 0.9.2 * docs: update README.md * chore(deps): add protobuf-java-util and protobuf-kotlin version management to pom.xml (v3.19.4) * chore: update version to v7.0.1-ra Co-authored-by: jpampus <[email protected]>
- Loading branch information
1 parent
fe85943
commit 467cc6e
Showing
20 changed files
with
369 additions
and
31 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,3 +1,5 @@ | ||
** | ||
!pom.xml | ||
!src/main/** | ||
!target/*.jar | ||
!mvn-local |
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
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
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*.jar.* | ||
*.pom.* |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Local, unreleased maven2 dependencies may be placed in this directory | ||
in order to be picked up by maven during build. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,7 +85,7 @@ | |
|
||
<properties> | ||
<!-- General --> | ||
<revision>7.0.1</revision> | ||
<revision>7.0.1-ra</revision> | ||
<email>[email protected]</email> | ||
|
||
<!-- Build info --> | ||
|
@@ -106,8 +106,13 @@ | |
<jaeger.version>3.3.1</jaeger.version> | ||
<freemarker.version>2.3.31</freemarker.version> | ||
<camel.version>3.15.0</camel.version> | ||
<idscp2.version>0.6.0</idscp2.version> | ||
<idscp2.version>0.9.2</idscp2.version> | ||
<protobuf.version>3.19.4</protobuf.version> | ||
<velocity.version>1.7</velocity.version> | ||
<idscp2-tpm2d.version>0.2.2</idscp2-tpm2d.version> | ||
<idscp2-cmc.version>0.8.1</idscp2-cmc.version> | ||
<grpc-netty.version>1.42.1</grpc-netty.version> | ||
<netty.version>4.1.72.Final</netty.version> | ||
|
||
<!-- Plugins --> | ||
<maven-enforcer-plugin.version>3.0.0</maven-enforcer-plugin.version> | ||
|
@@ -510,6 +515,18 @@ | |
<version>${protobuf.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.google.protobuf</groupId> | ||
<artifactId>protobuf-java-util</artifactId> | ||
<version>${protobuf.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.google.protobuf</groupId> | ||
<artifactId>protobuf-kotlin</artifactId> | ||
<version>${protobuf.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>de.fhg.aisec.ids</groupId> | ||
<artifactId>camel-idscp2</artifactId> | ||
|
@@ -534,6 +551,31 @@ | |
</exclusions> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>de.fhg.aisec.ids</groupId> | ||
<artifactId>idscp2-ra-cmc</artifactId> | ||
<version>${idscp2-cmc.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>io.netty</groupId> | ||
<artifactId>netty-bom</artifactId> | ||
<version>${netty.version}</version> | ||
<type>pom</type> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>io.grpc</groupId> | ||
<artifactId>grpc-netty</artifactId> | ||
<version>${grpc-netty.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.logging.log4j</groupId> | ||
<artifactId>log4j-jul</artifactId> | ||
<version>${log4j2.version}</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
<repositories> | ||
|
@@ -569,6 +611,18 @@ | |
<enabled>true</enabled> | ||
</releases> | ||
</repository> | ||
<!-- Enables usage of locally published artifacts --> | ||
<repository> | ||
<id>maven-local</id> | ||
<name>Local m2 Repository</name> | ||
<url>file://mvn-local</url> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
<releases> | ||
<enabled>true</enabled> | ||
</releases> | ||
</repository> | ||
</repositories> | ||
|
||
<dependencyManagement> | ||
|
@@ -776,6 +830,7 @@ | |
<licenseSet> | ||
<header>scripts/ci/license/header.txt</header> | ||
<excludes> | ||
<exclude>mvn-local/**</exclude> | ||
<exclude>**/README</exclude> | ||
<exclude>src/test/resources/**</exclude> | ||
<exclude>src/main/resources/**</exclude> | ||
|
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.