Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 34ef3974 authored by Alex Klyubin's avatar Alex Klyubin Committed by Android Git Automerger
Browse files

am 7cc40196: Merge "Fix typo in Android Keystore KeyFactory exception message." into mnc-dev

* commit '7cc40196':
  Fix typo in Android Keystore KeyFactory exception message.
parents e966f01d 7cc40196
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ public class AndroidKeyStoreKeyFactorySpi extends KeyFactorySpi {
                return result;
            } else {
                throw new InvalidKeySpecException(
                        "Obtaining RSAPublicKeySpec not supported for " + key.getAlgorithm() + " "
                        "Obtaining ECPublicKeySpec not supported for " + key.getAlgorithm() + " "
                        + ((key instanceof AndroidKeyStorePrivateKey) ? "private" : "public")
                        + " key");
            }