com.safelayer.rap.api.model.issuance.IssuancePopPendingResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pki-connector-restapi Show documentation
Show all versions of pki-connector-restapi Show documentation
The PKI Connector RESTAPI is a library that helps developing new PKI Connectors for TrustedX
The newest version!
package com.safelayer.rap.api.model.issuance;
import java.security.PublicKey;
import java.util.Map;
public interface IssuancePopPendingResponse extends IssuanceResponse{
public interface ProofOfPossession {
PublicKey getPublicKey();
String getSignatureAlgorithm();
byte[] getDigest();
}
public interface Key {
ProofOfPossession getPop();
}
Map getTasks();
}