Home
last modified time | relevance | path

Searched refs:transformationUpperCase (Results 1 – 2 of 2) sorted by relevance

/cts/tests/tests/keystore/src/android/keystore/cts/util/
DTestUtils.java867 String transformationUpperCase = transformation.toUpperCase(Locale.US); in getKeyAlgorithm() local
868 if (transformationUpperCase.equals("EC")) { in getKeyAlgorithm()
871 if (transformationUpperCase.equals("RSA")) { in getKeyAlgorithm()
874 if (transformationUpperCase.equals("DESEDE")) { in getKeyAlgorithm()
877 if (transformationUpperCase.equals("AES")) { in getKeyAlgorithm()
880 if (transformationUpperCase.startsWith("HMAC")) { in getKeyAlgorithm()
897 String transformationUpperCase = transformation.toUpperCase(Locale.US); in getCipherKeyAlgorithm() local
898 if (transformationUpperCase.startsWith("AES/")) { in getCipherKeyAlgorithm()
900 } else if (transformationUpperCase.startsWith("DESEDE/")) { in getCipherKeyAlgorithm()
902 } else if (transformationUpperCase.startsWith("RSA/")) { in getCipherKeyAlgorithm()
[all …]
/cts/tests/tests/keystore/src/android/keystore/cts/
DCipherTest.java1291 String transformationUpperCase = transformation.toUpperCase(Locale.US); in isRandomizedEncryption() local
1292 return (transformationUpperCase.endsWith("/PKCS1PADDING")) in isRandomizedEncryption()
1293 || (transformationUpperCase.contains("OAEP")); in isRandomizedEncryption()