blob: a36abbb21b2f46b2c13d6b56cc6d9133fec0c00f [file] [log] [blame]
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);
}