aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/prov/src/main/java/org/spongycastle/jce/interfaces/BCKeyStore.java
blob: 1b6eede337d44d6130fb0cf099e1454770ca3b17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.spongycastle.jce.interfaces;

import java.security.SecureRandom;

/**
 * all BC provider keystores implement this interface.
 */
public interface BCKeyStore
{
    /**
     * set the random source for the key store
     */
    public void setRandom(SecureRandom random);
}