本文整理汇总了Java中java.security.SecureRandom.nextLong方法的典型用法代码示例。如果您正苦于以下问题:Java SecureRandom.nextLong方法的具体用法?Java SecureRandom.nextLong怎么用?Java SecureRandom.nextLong使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.security.SecureRandom
的用法示例。
在下文中一共展示了SecureRandom.nextLong方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getSecureIndex
import java.security.SecureRandom; //导入方法依赖的package包/类
protected static long getSecureIndex() {
SecureRandom random = new SecureRandom();
while (true) {
long nextLong = random.nextLong();
if (nextLong > 0) {
return nextLong;
}
}
}
示例2: getRandomMask
import java.security.SecureRandom; //导入方法依赖的package包/类
private static long getRandomMask() {
final SecureRandom random = new SecureRandom();
long result = random.nextLong();
while (result < 0L) {
result = random.nextLong();
}
return result;
}
示例3: getAbsRandom
import java.security.SecureRandom; //导入方法依赖的package包/类
/**
* 生成正数随机数
* @param tRandom
* @return
*/
private static long getAbsRandom(SecureRandom tRandom) {
long l = tRandom.nextLong();
if (l == Long.MIN_VALUE) {
l = Long.MAX_VALUE;
} else {
l = Math.abs(l);
}
return l;
}
示例4: testCalculateIV
import java.security.SecureRandom; //导入方法依赖的package包/类
/**
* Regression test for IV calculation, see HADOOP-11343
*/
@Test(timeout=120000)
public void testCalculateIV() throws Exception {
JceAesCtrCryptoCodec codec = new JceAesCtrCryptoCodec();
codec.setConf(conf);
SecureRandom sr = new SecureRandom();
byte[] initIV = new byte[16];
byte[] IV = new byte[16];
long iterations = 1000;
long counter = 10000;
// Overflow test, IV: 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff
for(int i = 0; i < 8; i++) {
initIV[8 + i] = (byte)0xff;
}
for(long j = 0; j < counter; j++) {
assertIVCalculation(codec, initIV, j, IV);
}
// Random IV and counter sequence test
for(long i = 0; i < iterations; i++) {
sr.nextBytes(initIV);
for(long j = 0; j < counter; j++) {
assertIVCalculation(codec, initIV, j, IV);
}
}
// Random IV and random counter test
for(long i = 0; i < iterations; i++) {
sr.nextBytes(initIV);
for(long j = 0; j < counter; j++) {
long c = sr.nextLong();
assertIVCalculation(codec, initIV, c, IV);
}
}
}