當前位置: 首頁>>代碼示例>>Java>>正文


Java SecureRandom.nextLong方法代碼示例

本文整理匯總了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;
        }
    }
}
 
開發者ID:xipki,項目名稱:xitk,代碼行數:10,代碼來源:LoadExecutor.java

示例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;
}
 
開發者ID:MinBZK,項目名稱:OperatieBRP,代碼行數:9,代碼來源:ObjectSleutel.java

示例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;
}
 
開發者ID:MiniPa,項目名稱:cjs_ssms,代碼行數:15,代碼來源:MathUtil.java

示例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);
    }
  }
}
 
開發者ID:nucypher,項目名稱:hadoop-oss,代碼行數:44,代碼來源:TestCryptoCodec.java


注:本文中的java.security.SecureRandom.nextLong方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。