/aosp12/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/ |
H A D | IpSecManagerTest.java | 28 import static android.net.IpSecAlgorithm.CRYPT_AES_CBC; 453 case IpSecAlgorithm.CRYPT_AES_CBC: in getIvLen() 473 case IpSecAlgorithm.CRYPT_AES_CBC: in getBlkSize() 712 algoToRequiredMinSdk.put(CRYPT_AES_CBC, Build.VERSION_CODES.P); in testGetSupportedAlgorithms() 745 IpSecAlgorithm crypt = new IpSecAlgorithm(IpSecAlgorithm.CRYPT_AES_CBC, CRYPT_KEY); in testInterfaceCountersUdp4() 752 IpSecAlgorithm crypt = new IpSecAlgorithm(IpSecAlgorithm.CRYPT_AES_CBC, CRYPT_KEY); in testInterfaceCountersUdp6() 974 return new IpSecAlgorithm(CRYPT_AES_CBC, CRYPT_KEY); in buildCryptAesCbc() 1308 final IpSecAlgorithm crypt = new IpSecAlgorithm(CRYPT_AES_CBC, CRYPT_KEY); in testAesCbcAesXCbcTcp4UdpEncap() 1318 final IpSecAlgorithm crypt = new IpSecAlgorithm(CRYPT_AES_CBC, CRYPT_KEY); in testAesCbcAesXCbcUdp4UdpEncap() 1328 final IpSecAlgorithm crypt = new IpSecAlgorithm(CRYPT_AES_CBC, CRYPT_KEY); in testAesCbcAesCmacTcp4UdpEncap() [all …]
|
H A D | IpSecBaseTest.java | 25 import static android.net.IpSecAlgorithm.CRYPT_AES_CBC; 98 MANDATORY_IPSEC_ALGOS_SINCE_P.add(CRYPT_AES_CBC); 646 .setEncryption(new IpSecAlgorithm(IpSecAlgorithm.CRYPT_AES_CBC, CRYPT_KEY)) in buildIpSecTransform()
|
H A D | IpSecManagerTunnelTest.java | 589 new IpSecAlgorithm(IpSecAlgorithm.CRYPT_AES_CBC, CRYPT_KEY)); 847 new IpSecAlgorithm(IpSecAlgorithm.CRYPT_AES_CBC, CRYPT_KEY));
|
/aosp12/frameworks/base/core/java/android/net/ |
H A D | IpSecAlgorithm.java | 59 public static final String CRYPT_AES_CBC = "cbc(aes)"; field in IpSecAlgorithm 205 CRYPT_AES_CBC, 227 ALGO_TO_REQUIRED_FIRST_SDK.put(CRYPT_AES_CBC, SDK_VERSION_ZERO); in ALGO_TO_REQUIRED_FIRST_SDK.put() argument 374 case CRYPT_AES_CBC: in checkValidOrThrow() 454 case CRYPT_AES_CBC: // fallthrough in isEncryption()
|
H A D | Ikev2VpnProfile.java | 26 import static android.net.IpSecAlgorithm.CRYPT_AES_CBC; 93 addAlgorithmIfSupported(algorithms, CRYPT_AES_CBC); in addAlgorithmIfSupported() argument 252 final boolean hasCrypt = algorithmNames.contains(IpSecAlgorithm.CRYPT_AES_CBC); in hasNormalModeAlgorithms()
|
/aosp12/packages/modules/Connectivity/tests/unit/java/android/net/ |
H A D | IpSecAlgorithmTest.java | 88 new IpSecAlgorithm(IpSecAlgorithm.CRYPT_AES_CBC, Arrays.copyOf(KEY_MATERIAL, 256 / 8)); in testNoTruncLen() 162 new IpSecAlgorithm(IpSecAlgorithm.CRYPT_AES_CBC, Arrays.copyOf(KEY_MATERIAL, len / 8)); in testLenValidation() 165 new IpSecAlgorithm(IpSecAlgorithm.CRYPT_AES_CBC, Arrays.copyOf(KEY_MATERIAL, 384 / 8)); in testLenValidation()
|
H A D | IpSecConfigTest.java | 67 IpSecAlgorithm.CRYPT_AES_CBC, in getSampleConfig()
|
H A D | Ikev2VpnProfileTest.java | 196 IpSecAlgorithm.CRYPT_AES_CBC, in testBuildWithAllowedAlgorithmsNormal() 227 builder.setAllowedAlgorithms(Arrays.asList(IpSecAlgorithm.CRYPT_AES_CBC)); in testSetAllowedAlgorithmsInvalidList()
|
/aosp12/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/crypto/ |
H A D | IkeNormalModeCipherTest.java | 182 new IpSecAlgorithm(IpSecAlgorithm.CRYPT_AES_CBC, mAesCbcKey); in testBuildIpSecAlgorithm() 203 IpSecAlgorithm.CRYPT_AES_CBC, in testGetIpSecAlgorithmName()
|
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/crypto/ |
H A D | IkeCipher.java | 63 SaProposal.ENCRYPTION_ALGORITHM_AES_CBC, IpSecAlgorithm.CRYPT_AES_CBC); in IKE_ALGO_TO_IPSEC_ALGO.put() argument
|
/aosp12/packages/modules/Connectivity/tests/unit/java/com/android/internal/net/ |
H A D | VpnProfileTest.java | 105 IpSecAlgorithm.CRYPT_AES_CBC)); in getSampleIkev2Profile()
|
/aosp12/packages/modules/IPsec/tests/cts/src/android/ipsec/ike/cts/ |
H A D | SaProposalTest.java | 28 import static android.net.IpSecAlgorithm.CRYPT_AES_CBC; 403 ciphers.put(ENCRYPTION_ALGORITHM_AES_CBC, new CryptoInfo(R, CRYPT_AES_CBC)); in getAllCiphers()
|
/aosp12/frameworks/base/services/core/java/com/android/server/connectivity/ |
H A D | VpnIkev2Utils.java | 231 if (allowedAlgorithms.contains(IpSecAlgorithm.CRYPT_AES_CBC)) { in getChildSaProposals()
|
/aosp12/packages/modules/Connectivity/tests/unit/java/com/android/server/ |
H A D | IpSecServiceTest.java | 111 new IpSecAlgorithm(IpSecAlgorithm.CRYPT_AES_CBC, CRYPT_KEY);
|
H A D | IpSecServiceParameterizedTest.java | 201 new IpSecAlgorithm(IpSecAlgorithm.CRYPT_AES_CBC, CRYPT_KEY);
|
/aosp12/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-28.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/net/
javax/ ... |
/aosp12/frameworks/base/core/api/ |
H A D | current.txt | 26423 field public static final String CRYPT_AES_CBC = "cbc(aes)";
|