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

org.whispersystems.signalservice.internal.contacts.crypto.RemoteAttestation Maven / Gradle / Ivy

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