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/
DTestUtils.java710 String transformationUpperCase = transformation.toUpperCase(Locale.US); in getKeyAlgorithm() local
711 if (transformationUpperCase.equals("EC")) { in getKeyAlgorithm()
714 if (transformationUpperCase.equals("RSA")) { in getKeyAlgorithm()
717 if (transformationUpperCase.equals("DESEDE")) { in getKeyAlgorithm()
720 if (transformationUpperCase.equals("AES")) { in getKeyAlgorithm()
723 if (transformationUpperCase.startsWith("HMAC")) { in getKeyAlgorithm()
740 String transformationUpperCase = transformation.toUpperCase(Locale.US); in getCipherKeyAlgorithm() local
741 if (transformationUpperCase.startsWith("AES/")) { in getCipherKeyAlgorithm()
743 } else if (transformationUpperCase.startsWith("DESEDE/")) { in getCipherKeyAlgorithm()
745 } else if (transformationUpperCase.startsWith("RSA/")) { in getCipherKeyAlgorithm()
[all …]
DCipherTest.java1118 String transformationUpperCase = transformation.toUpperCase(Locale.US); in isRandomizedEncryption() local
1119 return (transformationUpperCase.endsWith("/PKCS1PADDING")) in isRandomizedEncryption()
1120 || (transformationUpperCase.contains("OAEP")); in isRandomizedEncryption()