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

org.signal.zkgroup.NotarySignature Maven / Gradle / Ivy

//
// Copyright (C) 2020 Signal Messenger, LLC.
// All rights reserved.
//
// SPDX-License-Identifier: GPL-3.0-only
//

// Generated by zkgroup/codegen/codegen.py - do not edit

package org.signal.zkgroup;

import org.signal.zkgroup.internal.ByteArray;

public final class NotarySignature extends ByteArray {

  public static final int SIZE = 64;

  public NotarySignature(byte[] contents) throws InvalidInputException {
    super(contents, SIZE);
  }

  public byte[] serialize() {
    return contents.clone();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy