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

org.whispersystems.libsignal.devices.DeviceConsistencySignature Maven / Gradle / Ivy

package org.whispersystems.libsignal.devices;

public class DeviceConsistencySignature {

  private final byte[] signature;
  private final byte[] vrfOutput;

  public DeviceConsistencySignature(byte[] signature, byte[] vrfOutput) {
    this.signature = signature;
    this.vrfOutput = vrfOutput;
  }

  public byte[] getVrfOutput() {
    return vrfOutput;
  }

  public byte[] getSignature() {
    return signature;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy