Home | History | Annotate | Download | only in interfaces
      1 package org.bouncycastle.jce.interfaces;
      2 
      3 import java.security.SecureRandom;
      4 
      5 /**
      6  * all BC provider keystores implement this interface.
      7  */
      8 public interface BCKeyStore
      9 {
     10     /**
     11      * set the random source for the key store
     12      */
     13     public void setRandom(SecureRandom random);
     14 }
     15