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.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/
DEpdgTunnelManager.java1111 for (int integrityAlgo : integrityAlgos) { in buildIkeSaProposal()
1112 if (validateConfig(integrityAlgo, VALID_INTEGRITY_ALGOS, CONFIG_TYPE_INTEGRITY_ALGO)) { in buildIkeSaProposal()
1113 saProposalBuilder.addIntegrityAlgorithm(integrityAlgo); in buildIkeSaProposal()
1194 for (int integrityAlgo : integrityAlgos) { in buildChildSaProposal()
1195 if (validateConfig(integrityAlgo, VALID_INTEGRITY_ALGOS, CONFIG_TYPE_INTEGRITY_ALGO)) { in buildChildSaProposal()
1196 if (ChildSaProposal.getSupportedIntegrityAlgorithms().contains(integrityAlgo)) { in buildChildSaProposal()
1197 saProposalBuilder.addIntegrityAlgorithm(integrityAlgo); in buildChildSaProposal()
1199 Log.w(TAG, "Device does not support integrity alog: " + integrityAlgo); in buildChildSaProposal()