Home
last modified time | relevance | path

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

/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
DSaRecord.java408 ? childSaRecordConfig.integrityAlgo.getKeyLength() in makeChildSaRecord()
438 childSaRecordConfig.integrityAlgo, in makeChildSaRecord()
449 childSaRecordConfig.integrityAlgo, in makeChildSaRecord()
501 @Nullable IkeMacIntegrity integrityAlgo, in makeIpSecTransform() argument
514 builder.setAuthentication(integrityAlgo.buildIpSecAlgorithmWithKey(integrityKey)); in makeIpSecTransform()
589 @Nullable public final IkeMacIntegrity integrityAlgo; field in SaRecord.ChildSaRecordConfig
605 @Nullable IkeMacIntegrity integrityAlgo, in ChildSaRecordConfig() argument
618 this.integrityAlgo = integrityAlgo; in ChildSaRecordConfig()
623 hasIntegrityAlgo = (integrityAlgo != null); in ChildSaRecordConfig()
1027 @Nullable IkeMacIntegrity integrityAlgo, in makeChildSaRecord() argument
[all …]
/packages/services/Iwlan/src/com/google/android/iwlan/epdg/
DEpdgChildSaProposal.java85 for (int integrityAlgo : integrityAlgos) { in buildProposal()
86 saProposalBuilder.addIntegrityAlgorithm(integrityAlgo); in buildProposal()
DEpdgIkeSaProposal.java105 for (int integrityAlgo : integrityAlgos) { in buildProposal()
106 saProposalBuilder.addIntegrityAlgorithm(integrityAlgo); in buildProposal()
DEpdgSaProposal.java138 for (int integrityAlgo : integrityAlgos) { in addProposedIntegrityAlgorithm()
139 if (validateConfig(integrityAlgo, VALID_INTEGRITY_ALGOS, CONFIG_TYPE_INTEGRITY_ALGO)) { in addProposedIntegrityAlgorithm()
140 mProposedIntegrityAlgos.add(integrityAlgo); in addProposedIntegrityAlgorithm()
DEpdgTunnelManager.java1547 for (int integrityAlgo : integrityAlgos) { in buildIkeSaProposal()
1548 if (validateConfig(integrityAlgo, VALID_INTEGRITY_ALGOS, CONFIG_TYPE_INTEGRITY_ALGO)) { in buildIkeSaProposal()
1549 saProposalBuilder.addIntegrityAlgorithm(integrityAlgo); in buildIkeSaProposal()
1703 for (int integrityAlgo : integrityAlgos) { in buildChildSaProposal()
1704 if (validateConfig(integrityAlgo, VALID_INTEGRITY_ALGOS, CONFIG_TYPE_INTEGRITY_ALGO)) { in buildChildSaProposal()
1705 if (ChildSaProposal.getSupportedIntegrityAlgorithms().contains(integrityAlgo)) { in buildChildSaProposal()
1706 saProposalBuilder.addIntegrityAlgorithm(integrityAlgo); in buildChildSaProposal()
1708 Log.w(TAG, "Device does not support integrity algo: " + integrityAlgo); in buildChildSaProposal()