what-the-bank/sources/org/bouncycastle/crypto/prng/RandomGenerator.java

13 lines
265 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.crypto.prng;
/* loaded from: classes6.dex */
public interface RandomGenerator {
void addSeedMaterial(long j);
void addSeedMaterial(byte[] bArr);
void nextBytes(byte[] bArr);
void nextBytes(byte[] bArr, int i, int i2);
}