Searched refs:transformationUpperCase (Results 1 – 2 of 2) sorted by relevance
642 String transformationUpperCase = transformation.toUpperCase(Locale.US); in getCipherKeyAlgorithm() local643 if (transformationUpperCase.startsWith("AES/")) { in getCipherKeyAlgorithm()645 } else if (transformationUpperCase.startsWith("DESEDE/")) { in getCipherKeyAlgorithm()647 } else if (transformationUpperCase.startsWith("RSA/")) { in getCipherKeyAlgorithm()655 String transformationUpperCase = transformation.toUpperCase(Locale.US); in isCipherSymmetric() local656 if (transformationUpperCase.startsWith("AES/") || transformationUpperCase.startsWith( in isCipherSymmetric()659 } else if (transformationUpperCase.startsWith("RSA/")) { in isCipherSymmetric()667 String transformationUpperCase = transformation.toUpperCase(Locale.US); in getCipherDigest() local668 if (transformationUpperCase.contains("/OAEP")) { in getCipherDigest()669 if (transformationUpperCase.endsWith("/OAEPPADDING")) { in getCipherDigest()[all …]
939 String transformationUpperCase = transformation.toUpperCase(Locale.US); in isRandomizedEncryption() local940 return (transformationUpperCase.endsWith("/PKCS1PADDING")) in isRandomizedEncryption()941 || (transformationUpperCase.contains("OAEP")); in isRandomizedEncryption()