Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.uid2</groupId>
<artifactId>uid2-attestation-api</artifactId>
<version>1.6.0-9665e9805f</version>
<version>1.6.10-SNAPSHOT</version>

<name>${project.groupId}:${project.artifactId}</name>
<description>Interfaces for enclave attestation process</description>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/uid2/enclave/IAttestationProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ public interface IAttestationProvider {
*/
default boolean isReady() { return true; }

byte[] getAttestationRequest(byte[] publicKey) throws AttestationException;
byte[] getAttestationRequest(byte[] publicKey, byte[] userData) throws AttestationException;
}
2 changes: 1 addition & 1 deletion update_maven_local.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off

set VERSION="1.0.0"
set VERSION="2.0.0"
set GROUP_ID="com.uid2"
set ARTIFACT_ID="uid2-attestation-api"

Expand Down
2 changes: 1 addition & 1 deletion update_maven_local.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION=${1:-"1.0.0"}
VERSION=${1:-"2.0.0"}
GROUP_ID="com.uid2"
ARTIFACT_ID="uid2-attestation-api"

Expand Down