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