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

net.sf.mmm.crypto.crypt.EncryptorImplCombined Maven / Gradle / Ivy

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