All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.uid2.enclave.IAttestationProvider Maven / Gradle / Ivy

There is a newer version: 2.1.6
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy