Home
last modified time | relevance | path

Searched refs:randomnessFactory (Results 1 – 7 of 7) sorted by relevance

/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/message/
H A DIkeKePayload.java211 @SaProposal.DhGroup int dh, RandomnessFactory randomnessFactory) { in createOutboundKePayload() argument
218 return createOutboundModpKePayload(dh, randomnessFactory); in createOutboundKePayload()
220 return createOutboundCurveKePayload(dh, randomnessFactory); in createOutboundKePayload()
227 @SaProposal.DhGroup int dh, RandomnessFactory randomnessFactory) { in createOutboundModpKePayload() argument
238 SecureRandom random = randomnessFactory.getRandom(); in createOutboundModpKePayload()
260 @SaProposal.DhGroup int dh, RandomnessFactory randomnessFactory) { in createOutboundCurveKePayload() argument
H A DIkeNoncePayload.java70 public IkeNoncePayload(RandomnessFactory randomnessFactory) { in IkeNoncePayload() argument
74 SecureRandom random = randomnessFactory.getRandom(); in IkeNoncePayload()
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
H A DIkeEapAuthenticatorFactory.java43 RandomnessFactory randomnessFactory) { in newEapAuthenticator() argument
44 return new EapAuthenticator(looper, cb, context, eapSessionConfig, randomnessFactory); in newEapAuthenticator()
H A DChildSessionStateMachine.java263 RandomnessFactory randomnessFactory, in ChildSessionStateMachine() argument
275 mRandomFactory = randomnessFactory; in ChildSessionStateMachine()
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/utils/
H A DIkeSpiGenerator.java33 public IkeSpiGenerator(RandomnessFactory randomnessFactory) { in IkeSpiGenerator() argument
34 SecureRandom random = randomnessFactory.getRandom(); in IkeSpiGenerator()
H A DIpSecSpiGenerator.java39 @NonNull IpSecManager ipSecManager, RandomnessFactory randomnessFactory) { in IpSecSpiGenerator() argument
42 mRandom = randomnessFactory.getRandom(); in IpSecSpiGenerator()
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/eap/
H A DEapAuthenticator.java89 EapRandomFactory randomnessFactory) { in EapAuthenticator() argument
96 createNewRandomIfNull(randomnessFactory.getRandom())), in EapAuthenticator()