HomeSort by relevance Sort by last modified time
    Searched refs:algorithmUpperCase (Results 1 - 2 of 2) sorted by null

  /cts/tests/tests/keystore/src/android/keystore/cts/
TestUtils.java 630 String algorithmUpperCase = algorithm.toUpperCase(Locale.US);
631 if (!algorithmUpperCase.startsWith("HMAC")) {
634 String result = algorithmUpperCase.substring("HMAC".length());
715 String algorithmUpperCase = algorithm.toUpperCase(Locale.US);
716 int withIndex = algorithmUpperCase.indexOf("WITH");
720 String digest = algorithmUpperCase.substring(0, withIndex);
728 String algorithmUpperCase = algorithm.toUpperCase(Locale.US);
729 if (algorithmUpperCase.endsWith("WITHECDSA")) {
731 } else if (algorithmUpperCase.endsWith("WITHRSA")) {
733 } else if (algorithmUpperCase.endsWith("WITHRSA/PSS"))
    [all...]
SignatureTest.java     [all...]

Completed in 105 milliseconds