Home
last modified time | relevance | path

Searched refs:integrityAlgo (Results 1 – 2 of 2) sorted by relevance

/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
DSaRecord.java409 ? childSaRecordConfig.integrityAlgo.getKeyLength() in makeChildSaRecord()
439 childSaRecordConfig.integrityAlgo, in makeChildSaRecord()
450 childSaRecordConfig.integrityAlgo, in makeChildSaRecord()
502 @Nullable IkeMacIntegrity integrityAlgo, in makeIpSecTransform() argument
515 builder.setAuthentication(integrityAlgo.buildIpSecAlgorithmWithKey(integrityKey)); in makeIpSecTransform()
607 @Nullable public final IkeMacIntegrity integrityAlgo; field in SaRecord.ChildSaRecordConfig
623 @Nullable IkeMacIntegrity integrityAlgo, in ChildSaRecordConfig() argument
636 this.integrityAlgo = integrityAlgo; in ChildSaRecordConfig()
641 hasIntegrityAlgo = (integrityAlgo != null); in ChildSaRecordConfig()
1045 @Nullable IkeMacIntegrity integrityAlgo, in makeChildSaRecord() argument
[all …]
/packages/services/Iwlan/src/com/google/android/iwlan/epdg/
DEpdgTunnelManager.java1032 for (int integrityAlgo : integrityAlgos) { in buildIkeSaProposal()
1033 if (validateConfig(integrityAlgo, VALID_INTEGRITY_ALGOS, CONFIG_TYPE_INTEGRITY_ALGO)) { in buildIkeSaProposal()
1034 saProposalBuilder.addIntegrityAlgorithm(integrityAlgo); in buildIkeSaProposal()
1115 for (int integrityAlgo : integrityAlgos) { in buildChildSaProposal()
1116 if (validateConfig(integrityAlgo, VALID_INTEGRITY_ALGOS, CONFIG_TYPE_INTEGRITY_ALGO)) { in buildChildSaProposal()
1117 if (ChildSaProposal.getSupportedIntegrityAlgorithms().contains(integrityAlgo)) { in buildChildSaProposal()
1118 saProposalBuilder.addIntegrityAlgorithm(integrityAlgo); in buildChildSaProposal()
1120 Log.w(TAG, "Device does not support integrity alog: " + integrityAlgo); in buildChildSaProposal()