summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/crypto/prng/DRBGProvider.java
blob: c39760c9bba7ac265f396c3410b0a772f089e443 (plain)
1
2
3
4
5
6
7
8
package org.bouncycastle.crypto.prng;

import org.bouncycastle.crypto.prng.drbg.SP80090DRBG;

interface DRBGProvider
{
    SP80090DRBG get(EntropySource entropySource);
}