com.uid2.enclave.IAttestationProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of uid2-attestation-api Show documentation
Show all versions of uid2-attestation-api Show documentation
Interfaces for enclave attestation process
package com.uid2.enclave;
public interface IAttestationProvider {
/**
* Indicates whether a provider is ready to serve getAttestationRequest
* @return is ready or not
*/
default boolean isReady() { return true; }
byte[] getAttestationRequest(byte[] publicKey) throws AttestationException;
}