1package org.bouncycastle.jcajce;
2
3import javax.crypto.SecretKey;
4
5/**
6 * Base interface for keys associated with various password based key derivation functions (PBKDF).
7 */
8public interface PBKDFKey
9    extends SecretKey
10{
11}
12