/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 7088989
* @summary Ensure the AES ciphers of OracleUcrypto provider works correctly
*/
"AES/ECB/PKCS5Padding",
"AES/CBC/PKCS5Padding",
};
};
}
// Provider for testing Interoperability
}
Provider p,
boolean testPassed = true;
byte[] in = new byte[32];
try {
// check ENC
Cipher c;
try {
} catch (NoSuchAlgorithmException nsae) {
continue;
}
testPassed = false;
} else {
}
// check DEC
testPassed = false;
} else {
}
testPassed = false;
}
}
if (!testPassed) {
throw new RuntimeException("One or more CIPHER test failed!");
} else {
}
}
Provider p) {
boolean testPassed = true;
byte[] in = new byte[16];
int blockSize = 16;
try {
// check ENC
Cipher c;
try {
} catch (NoSuchAlgorithmException nsae) {
continue;
}
//System.out.print("1st UPDATE: " + firstPartLen);
// check DEC
testPassed = false;
}
}
}
if (!testPassed) {
throw new RuntimeException("One or more CIPHER test failed!");
} else {
}
}
throws NoSuchAlgorithmException {
boolean testPassed = true;
// Test SecretKey, PrivateKey and PublicKey
try {
try {
} catch (NoSuchAlgorithmException nsae) {
continue;
}
}
}
testPassed = false;
}
}
if (!testPassed) {
throw new RuntimeException("One or more CIPHER test failed!");
} else {
}
}
Provider p) {
boolean testPassed = true;
byte[] in = new byte[16];
byte[] iv = new byte[16];
try {
Cipher c;
try {
} catch (NoSuchAlgorithmException nsae) {
return;
}
// check ENC
// check DEC
testPassed = false;
} else {
}
}
testPassed = false;
}
if (!testPassed) {
throw new RuntimeException("One or more CIPHER test failed!");
} else {
}
}
boolean equal = true;
equal = false;
} else {
for (int p = 0; p < a1Len; p++) {
equal = false;
break;
}
}
}
return equal;
}
boolean equal = true;
equal = false;
equal = false;
equal = false;
}
return equal;
}
}