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

name.neuhalfen.projects.crypto.symmetric.keygeneration.impl.derivation.KeyDerivationFunction Maven / Gradle / Ivy

The newest version!
package name.neuhalfen.projects.crypto.symmetric.keygeneration.impl.derivation;

import java.security.GeneralSecurityException;
import javax.annotation.Nullable;

public interface KeyDerivationFunction {

  byte[] deriveKey(@Nullable byte[] salt, byte[] info, int desiredKeyLengthInBits)
      throws GeneralSecurityException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy