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

net.sf.mmm.crypto.asymmetric.sign.SignatureBinary Maven / Gradle / Ivy

The newest version!
package net.sf.mmm.crypto.asymmetric.sign;

import net.sf.mmm.crypto.CryptoBinary;

/**
 * Simple datatype as container for a {@link SignatureSigner#signAfterUpdate(boolean) signature}. Allows
 * abstraction of actual implementations (such as bouncy-castle) for portability. Further, it is simple and fast to read
 * and store until real semantic parsing and usage is required.
 *
 * @author Joerg Hohwiller (hohwille at users.sourceforge.net)
 * @since 1.0.0
 */
public abstract class SignatureBinary extends CryptoBinary {

  /**
   * The constructor.
   *
   * @param data the raw binary {@link #getData() data}.
   */
  public SignatureBinary(byte[] data) {

    super(data);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy