![JAR search and dependency download from the Maven repository](/logo.png)
name.neuhalfen.projects.crypto.symmetric.keygeneration.impl.derivation.KeyDerivationFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bouncy-gpg Show documentation
Show all versions of bouncy-gpg Show documentation
Make using Bouncy Castle with OpenPGP fun again!
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