01: package org.bouncycastle.jce.interfaces; 02: 03: import java.security.SecureRandom; 04: 05: /** 06: * all BC provider keystores implement this interface. 07: */ 08: public interface BCKeyStore { 09: /** 10: * set the random source for the key store 11: */ 12: public void setRandom(SecureRandom random); 13: }