Merge "Reject AlgorithmParameters of wrong type." into mnc-dev
This commit is contained in:
@@ -129,6 +129,12 @@ abstract class AndroidKeyStoreAuthenticatedAESCipherSpi extends AndroidKeyStoreC
|
||||
return;
|
||||
}
|
||||
|
||||
if (!"GCM".equalsIgnoreCase(params.getAlgorithm())) {
|
||||
throw new InvalidAlgorithmParameterException(
|
||||
"Unsupported AlgorithmParameters algorithm: " + params.getAlgorithm()
|
||||
+ ". Supported: GCM");
|
||||
}
|
||||
|
||||
GCMParameterSpec spec;
|
||||
try {
|
||||
spec = params.getParameterSpec(GCMParameterSpec.class);
|
||||
|
||||
@@ -197,6 +197,12 @@ class AndroidKeyStoreUnauthenticatedAESCipherSpi extends AndroidKeyStoreCipherSp
|
||||
return;
|
||||
}
|
||||
|
||||
if (!"AES".equalsIgnoreCase(params.getAlgorithm())) {
|
||||
throw new InvalidAlgorithmParameterException(
|
||||
"Unsupported AlgorithmParameters algorithm: " + params.getAlgorithm()
|
||||
+ ". Supported: AES");
|
||||
}
|
||||
|
||||
IvParameterSpec ivSpec;
|
||||
try {
|
||||
ivSpec = params.getParameterSpec(IvParameterSpec.class);
|
||||
|
||||
Reference in New Issue
Block a user