
net.sf.mmm.crypto.asymmetric.sign.SignatureBinary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mmm-crypto-jce Show documentation
Show all versions of mmm-crypto-jce Show documentation
Library for simple and more secure usage of cryptography (JCA and JCE).
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