protected static byte[] createRandomBlock(boolean useGMTUnixTime, RandomGenerator randomGenerator) { byte[] result = new byte[32]; randomGenerator.nextBytes(result); if (useGMTUnixTime) { TlsUtils.writeGMTUnixTime(result, 0); } return result; }
public RandomGenerator getNonceRandomGenerator() { return nonceRandom; }
protected SecureRandom( RandomGenerator generator) { super(0); this.generator = generator; }
RandomGenerator getNonceRandomGenerator();