
net.sf.mmm.crypto.crypt.EncryptorImplCombined 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.crypt;
/**
* Implementation of {@link Encryptor} that combines multiple {@link Encryptor}s.
*
* @author Joerg Hohwiller (hohwille at users.sourceforge.net)
* @since 1.0.0
*/
public class EncryptorImplCombined extends CryptorImplCombined implements AbstractEncryptor {
/**
* The constructor.
*
* @param encryptors the {@link Encryptor}s to combine.
*/
public EncryptorImplCombined(Encryptor[] encryptors) {
super(encryptors);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy