Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BCKeyStore.java « interfaces « jce « bouncycastle « org « java « main « src « prov - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
}