Instead of providing default truncation lengths (based on RFC or
otherwise), this change imposes a restriction that the truncation length
must be supplied for all auth or aead algorithms.
Bug: 77204048
Test: Updated tests, ran on walleye
Merged-In: I4a0e2e71aa97259e56f44e7c8a2ce53135708d97
Change-Id: I4a0e2e71aa97259e56f44e7c8a2ce53135708d97
(cherry picked from commit bb7f2820f5)
130 lines
4.5 KiB
Java
130 lines
4.5 KiB
Java
/*
|
|
* Copyright (C) 2017 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package android.net;
|
|
|
|
import static org.junit.Assert.assertTrue;
|
|
import static org.junit.Assert.fail;
|
|
|
|
import android.os.Parcel;
|
|
import android.support.test.filters.SmallTest;
|
|
import android.support.test.runner.AndroidJUnit4;
|
|
|
|
import java.util.AbstractMap.SimpleEntry;
|
|
import java.util.Arrays;
|
|
import java.util.Map.Entry;
|
|
import java.util.Random;
|
|
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
|
|
/** Unit tests for {@link IpSecAlgorithm}. */
|
|
@SmallTest
|
|
@RunWith(AndroidJUnit4.class)
|
|
public class IpSecAlgorithmTest {
|
|
|
|
private static final byte[] KEY_MATERIAL;
|
|
|
|
static {
|
|
KEY_MATERIAL = new byte[128];
|
|
new Random().nextBytes(KEY_MATERIAL);
|
|
};
|
|
|
|
@Test
|
|
public void testNoTruncLen() throws Exception {
|
|
Entry<String, Integer>[] authAndAeadList =
|
|
new Entry[] {
|
|
new SimpleEntry<>(IpSecAlgorithm.AUTH_HMAC_MD5, 128),
|
|
new SimpleEntry<>(IpSecAlgorithm.AUTH_HMAC_SHA1, 160),
|
|
new SimpleEntry<>(IpSecAlgorithm.AUTH_HMAC_SHA256, 256),
|
|
new SimpleEntry<>(IpSecAlgorithm.AUTH_HMAC_SHA384, 384),
|
|
new SimpleEntry<>(IpSecAlgorithm.AUTH_HMAC_SHA512, 512),
|
|
new SimpleEntry<>(IpSecAlgorithm.AUTH_CRYPT_AES_GCM, 224)
|
|
};
|
|
|
|
// Expect auth and aead algorithms to throw errors if trunclen is omitted.
|
|
for (Entry<String, Integer> algData : authAndAeadList) {
|
|
try {
|
|
new IpSecAlgorithm(
|
|
algData.getKey(), Arrays.copyOf(KEY_MATERIAL, algData.getValue() / 8));
|
|
fail("Expected exception on unprovided auth trunclen");
|
|
} catch (IllegalArgumentException expected) {
|
|
}
|
|
}
|
|
|
|
// Ensure crypt works with no truncation length supplied.
|
|
new IpSecAlgorithm(IpSecAlgorithm.CRYPT_AES_CBC, Arrays.copyOf(KEY_MATERIAL, 256 / 8));
|
|
}
|
|
|
|
@Test
|
|
public void testTruncLenValidation() throws Exception {
|
|
for (int truncLen : new int[] {256, 512}) {
|
|
new IpSecAlgorithm(
|
|
IpSecAlgorithm.AUTH_HMAC_SHA512,
|
|
Arrays.copyOf(KEY_MATERIAL, 512 / 8),
|
|
truncLen);
|
|
}
|
|
|
|
for (int truncLen : new int[] {255, 513}) {
|
|
try {
|
|
new IpSecAlgorithm(
|
|
IpSecAlgorithm.AUTH_HMAC_SHA512,
|
|
Arrays.copyOf(KEY_MATERIAL, 512 / 8),
|
|
truncLen);
|
|
fail("Invalid truncation length not validated");
|
|
} catch (IllegalArgumentException pass) {
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test
|
|
public void testLenValidation() throws Exception {
|
|
for (int len : new int[] {128, 192, 256}) {
|
|
new IpSecAlgorithm(IpSecAlgorithm.CRYPT_AES_CBC, Arrays.copyOf(KEY_MATERIAL, len / 8));
|
|
}
|
|
try {
|
|
new IpSecAlgorithm(IpSecAlgorithm.CRYPT_AES_CBC, Arrays.copyOf(KEY_MATERIAL, 384 / 8));
|
|
fail("Invalid key length not validated");
|
|
} catch (IllegalArgumentException pass) {
|
|
}
|
|
}
|
|
|
|
@Test
|
|
public void testAlgoNameValidation() throws Exception {
|
|
try {
|
|
new IpSecAlgorithm("rot13", Arrays.copyOf(KEY_MATERIAL, 128 / 8));
|
|
fail("Invalid algorithm name not validated");
|
|
} catch (IllegalArgumentException pass) {
|
|
}
|
|
}
|
|
|
|
@Test
|
|
public void testParcelUnparcel() throws Exception {
|
|
IpSecAlgorithm init =
|
|
new IpSecAlgorithm(
|
|
IpSecAlgorithm.AUTH_HMAC_SHA512, Arrays.copyOf(KEY_MATERIAL, 512 / 8), 256);
|
|
|
|
Parcel p = Parcel.obtain();
|
|
p.setDataPosition(0);
|
|
init.writeToParcel(p, 0);
|
|
|
|
p.setDataPosition(0);
|
|
IpSecAlgorithm fin = IpSecAlgorithm.CREATOR.createFromParcel(p);
|
|
assertTrue("Parcel/Unparcel failed!", IpSecAlgorithm.equals(init, fin));
|
|
p.recycle();
|
|
}
|
|
}
|