Home
last modified time | relevance | path

Searched refs:ikePrf (Results 1 – 6 of 6) sorted by relevance

/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/message/
H A DIkeAuthPskPayload.java73 IkeMacPrf ikePrf, in IkeAuthPskPayload() argument
78 psk, ikeInitBytes, nonce, idPayloadBodyBytes, ikePrf, prfKeyBytes); in IkeAuthPskPayload()
86 IkeMacPrf ikePrf, in calculatePskSignature() argument
88 byte[] signingKeyBytes = ikePrf.signBytes(psk, IKE_KEY_PAD_STRING_ASCII_HEX_BYTES); in calculatePskSignature()
90 getSignedOctets(ikeInitBytes, nonce, idPayloadBodyBytes, ikePrf, prfKeyBytes); in calculatePskSignature()
92 return ikePrf.signBytes(signingKeyBytes, dataToSignBytes); in calculatePskSignature()
117 IkeMacPrf ikePrf, in verifyInboundSignature() argument
122 psk, ikeInitBytes, nonce, idPayloadBodyBytes, ikePrf, prfKeyBytes); in verifyInboundSignature()
H A DIkeAuthDigitalSignPayload.java190 IkeMacPrf ikePrf, in IkeAuthDigitalSignPayload() argument
194 getSignedOctets(ikeInitBytes, nonce, idPayloadBodyBytes, ikePrf, prfKeyBytes); in IkeAuthDigitalSignPayload()
266 IkeMacPrf ikePrf, in verifyInboundSignature() argument
270 getSignedOctets(ikeInitBytes, nonce, idPayloadBodyBytes, ikePrf, prfKeyBytes); in verifyInboundSignature()
H A DIkeAuthPayload.java102 IkeMacPrf ikePrf, in getSignedOctets() argument
104 byte[] signedidPayloadBodyBytes = ikePrf.signBytes(prfKeyBytes, idPayloadBodyBytes); in getSignedOctets()
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
H A DSaRecord.java413 childSaRecordConfig.ikePrf.generateKeyMat( in makeChildSaRecord()
606 public final IkeMacPrf ikePrf; field in SaRecord.ChildSaRecordConfig
622 IkeMacPrf ikePrf, in ChildSaRecordConfig() argument
635 this.ikePrf = ikePrf; in ChildSaRecordConfig()
H A DChildSessionStateMachine.java378 IkeMacPrf ikePrf, in handleFirstChildExchange() argument
385 this.mIkePrf = ikePrf; in handleFirstChildExchange()
413 IkeMacPrf ikePrf, in createChildSession() argument
419 this.mIkePrf = ikePrf; in createChildSession()
/aosp12/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/
H A DChildSessionStateMachineTest.java429 assertEquals(mIkePrf, childSaRecordConfig.ikePrf); in verifyChildSaRecordConfig()