HomeSort by relevance Sort by last modified time
    Searched refs:random (Results 1 - 25 of 452) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/
KeyGenerationParameters.java 10 private SecureRandom random; field in class:KeyGenerationParameters
17 * @param random the random byte source.
21 SecureRandom random,
24 this.random = random;
29 * return the random source associated with this
32 * @return the generators random source.
36 return random;
CipherKeyGenerator.java 10 protected SecureRandom random; field in class:CipherKeyGenerator
21 this.random = param.getRandom();
34 random.nextBytes(key);
  /external/clang/test/Lexer/
msdos-cpm-eof.c 7 I am random garbage after ^Z
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
ParametersWithRandom.java 10 private SecureRandom random; field in class:ParametersWithRandom
15 SecureRandom random)
17 this.random = random;
29 return random;
  /libcore/luni/src/main/java/java/security/
AlgorithmParameterGeneratorSpi.java 43 * @param random
46 protected abstract void engineInit(int size, SecureRandom random);
54 * @param random
60 SecureRandom random) throws InvalidAlgorithmParameterException;
  /libcore/luni/src/main/java/javax/crypto/
KeyGeneratorSpi.java 51 * @param random
52 * the randomness source for any random bytes.
58 SecureRandom random) throws InvalidAlgorithmParameterException;
66 * @param random
67 * the randomness source for any random bytes.
69 protected abstract void engineInit(int keysize, SecureRandom random);
75 * @param random
76 * the randomness source for any random bytes.
78 protected abstract void engineInit(SecureRandom random);
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/paddings/
ISO10126d2Padding.java 13 SecureRandom random; field in class:ISO10126d2Padding
18 * @param random a SecureRandom if available.
20 public void init(SecureRandom random)
23 if (random != null)
25 this.random = random;
29 this.random = new SecureRandom();
55 in[inOff] = (byte)random.nextInt();
X923Padding.java 9 * passed in random padding is assumed, otherwise padding with zeros is used.
14 SecureRandom random = null; field in class:X923Padding
19 * @param random a SecureRandom if one is available.
21 public void init(SecureRandom random)
24 this.random = random;
49 if (random == null)
55 in[inOff] = (byte)random.nextInt();
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/generators/
DHParametersGenerator.java 12 private SecureRandom random; field in class:DHParametersGenerator
21 * @param random a source of randomness
26 SecureRandom random)
30 this.random = random;
44 BigInteger[] safePrimes = DHParametersHelper.generateSafePrimes(size, certainty, random);
48 BigInteger g = DHParametersHelper.selectGenerator(p, q, random);
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyAlgorithmParameterGeneratorSpi.java 38 protected void engineInit(int keysize, SecureRandom random) {
45 SecureRandom random) {
46 if (random == null) {
47 throw new IllegalArgumentException("random is null");
MyKeyPairGeneratorSpi.java 38 public void initialize(int keysize, SecureRandom random) {
43 if (random == null) {
44 throw new IllegalArgumentException("Invalid random");
52 public void initialize(AlgorithmParameterSpec params, SecureRandom random)
54 if (random == null) {
56 "Not supported for null random");
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyAlgorithmParameterGeneratorSpi.java 39 public void engineInit(int keysize, SecureRandom random) {
46 SecureRandom random) {
47 if (random == null) {
48 throw new IllegalArgumentException("random is null");
MyKeyPairGeneratorSpi.java 39 public void initialize(int keysize, SecureRandom random) {
44 if (random == null) {
45 throw new IllegalArgumentException("Invalid random");
53 public void initialize(AlgorithmParameterSpec params, SecureRandom random)
55 if (random == null) {
57 "Not supported for null random");
  /bionic/libc/kernel/common/linux/
etherdevice.h 17 #include <linux/random.h>
  /development/ndk/platforms/android-3/include/linux/
etherdevice.h 17 #include <linux/random.h>
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/interfaces/
BCKeyStore.java 11 * set the random source for the key store
13 public void setRandom(SecureRandom random);
  /external/webkit/Source/JavaScriptCore/wtf/
OSRandomSource.cpp 52 TInt random; local
53 while (length > sizeof(random)) {
54 random = Math::Random();
55 memcpy(buffer, &random, sizeof(random));
56 length -= sizeof(random);
57 buffer += sizeof(random);
60 random = Math::Random();
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
etherdevice.h 17 #include <linux/random.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
etherdevice.h 17 #include <linux/random.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
etherdevice.h 17 #include <linux/random.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
etherdevice.h 17 #include <linux/random.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
etherdevice.h 17 #include <linux/random.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
etherdevice.h 17 #include <linux/random.h>
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/
etherdevice.h 17 #include <linux/random.h>
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/
etherdevice.h 17 #include <linux/random.h>

Completed in 320 milliseconds

1 2 3 4 5 6 7 8 91011>>