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

org.whispersystems.signalservice.api.kbs.KbsData Maven / Gradle / Ivy

There is a newer version: 2.15.3_unofficial_107
Show newest version
package org.whispersystems.signalservice.api.kbs;

/**
 * Construct from a {@link org.signal.libsignal.svr2.PinHash}.
 */
public final class KbsData {
  private final MasterKey masterKey;
  private final byte[]    kbsAccessKey;
  private final byte[]    cipherText;

  KbsData(MasterKey masterKey, byte[] kbsAccessKey, byte[] cipherText) {
    this.masterKey    = masterKey;
    this.kbsAccessKey = kbsAccessKey;
    this.cipherText   = cipherText;
  }

  public MasterKey getMasterKey() {
    return masterKey;
  }

  public byte[] getKbsAccessKey() {
    return kbsAccessKey;
  }

  public byte[] getCipherText() {
    return cipherText;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy