本文整理匯總了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);
}
}
}