Uses of Class
javax.crypto.KDF

Packages that use KDF
Package
Description
Provides the classes and interfaces for cryptographic operations.
  • Uses of KDF in javax.crypto

    Methods in javax.crypto that return KDF
    Modifier and Type
    Method
    Description
    static KDF
    KDF.getInstance(String algorithm)
    Returns a KDF object that implements the specified algorithm.
    static KDF
    KDF.getInstance(String algorithm, String provider)
    Returns a KDF object that implements the specified algorithm from the specified security provider.
    static KDF
    KDF.getInstance(String algorithm, Provider provider)
    Returns a KDF object that implements the specified algorithm from the specified security provider.
    static KDF
    KDF.getInstance(String algorithm, KDFParameters kdfParameters)
    Returns a KDF object that implements the specified algorithm and is initialized with the specified parameters.
    static KDF
    KDF.getInstance(String algorithm, KDFParameters kdfParameters, String provider)
    Returns a KDF object that implements the specified algorithm from the specified provider and is initialized with the specified parameters.
    static KDF
    KDF.getInstance(String algorithm, KDFParameters kdfParameters, Provider provider)
    Returns a KDF object that implements the specified algorithm from the specified provider and is initialized with the specified parameters.