Home
last modified time | relevance | path

Searched refs:secureRandom (Results 1 – 5 of 5) sorted by relevance

/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/testmode/
DDeterministicSecureRandomTest.java41 DeterministicSecureRandom secureRandom = new DeterministicSecureRandom(); in testDeterministicSecureRandomNonRepeating() local
45 secureRandom.generateSeed(BYTE_ARRAY_LEN), in testDeterministicSecureRandomNonRepeating()
46 secureRandom.generateSeed(BYTE_ARRAY_LEN))); in testDeterministicSecureRandomNonRepeating()
47 assertNotEquals(secureRandom.nextLong(), secureRandom.nextLong()); in testDeterministicSecureRandomNonRepeating()
51 secureRandom.nextBytes(randomBytesOne); in testDeterministicSecureRandomNonRepeating()
52 secureRandom.nextBytes(randomBytesTwo); in testDeterministicSecureRandomNonRepeating()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
DEapTtlsMethodStateMachine.java62 SecureRandom secureRandom) { in EapTtlsMethodStateMachine() argument
63 this(context, eapSessionConfig, eapTtlsConfig, secureRandom, new EapTtlsTypeDataDecoder()); in EapTtlsMethodStateMachine()
71 SecureRandom secureRandom, in EapTtlsMethodStateMachine() argument
77 mSecureRandom = secureRandom; in EapTtlsMethodStateMachine()
DEapSimMethodStateMachine.java99 SecureRandom secureRandom) { in EapSimMethodStateMachine() argument
104 secureRandom, in EapSimMethodStateMachine() local
113 SecureRandom secureRandom, in EapSimMethodStateMachine() argument
124 this.mSecureRandom = secureRandom; in EapSimMethodStateMachine()
DEapMsChapV2MethodStateMachine.java193 EapMsChapV2Config eapMsChapV2Config, SecureRandom secureRandom) { in EapMsChapV2MethodStateMachine() argument
194 this(eapMsChapV2Config, secureRandom, new EapMsChapV2TypeDataDecoder()); in EapMsChapV2MethodStateMachine()
200 SecureRandom secureRandom, in EapMsChapV2MethodStateMachine() argument
203 this.mSecureRandom = secureRandom; in EapMsChapV2MethodStateMachine()
DEapStateMachine.java83 @NonNull SecureRandom secureRandom) { in EapStateMachine() argument
86 this.mSecureRandom = secureRandom; in EapStateMachine()