org.whispersystems.signalservice.internal.contacts.crypto.RemoteAttestation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of signal-service-java Show documentation
Show all versions of signal-service-java Show documentation
Signal Service communication library for Java
package org.whispersystems.signalservice.internal.contacts.crypto;
public class RemoteAttestation {
private final byte[] requestId;
private final RemoteAttestationKeys keys;
public RemoteAttestation(byte[] requestId, RemoteAttestationKeys keys) {
this.requestId = requestId;
this.keys = keys;
}
public byte[] getRequestId() {
return requestId;
}
public RemoteAttestationKeys getKeys() {
return keys;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy