mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
8 lines
132 B
Java
8 lines
132 B
Java
package org.briarproject.api.crypto;
|
|
|
|
/** A deterministic PRNG. */
|
|
public interface PseudoRandom {
|
|
|
|
byte[] nextBytes(int bytes);
|
|
}
|