summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/jce/interfaces/BCKeyStore.java
blob: a36abbb21b2f46b2c13d6b56cc6d9133fec0c00f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.bouncycastle.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);
}