summaryrefslogtreecommitdiff
path: root/bcprov/src/main/java/org/bouncycastle/jcajce/PBKDFKey.java
blob: ae3d2ebd99f2c0d0effd335b2ff5a0b5f3e0e0f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.bouncycastle.jcajce;

import javax.crypto.SecretKey;

/**
 * Base interface for keys associated with various password based key derivation functions (PBKDF).
 */
public interface PBKDFKey
    extends SecretKey
{
}