diff options
author | Alex Klyubin <klyubin@google.com> | 2015-04-02 15:53:46 -0700 |
---|---|---|
committer | Alex Klyubin <klyubin@google.com> | 2015-04-02 15:57:27 -0700 |
commit | b4834ae3fa09e8013f7ab743a12def063ae999e3 (patch) | |
tree | d9985a4927997a3fd00f25132a4f5579aec39272 /keystore/java/android/security/KeyStoreCipherSpi.java | |
parent | 3cc9e5d68d89ea1ffa79ad6981585bc46362c4a7 (diff) | |
download | frameworks_base-b4834ae3fa09e8013f7ab743a12def063ae999e3.zip frameworks_base-b4834ae3fa09e8013f7ab743a12def063ae999e3.tar.gz frameworks_base-b4834ae3fa09e8013f7ab743a12def063ae999e3.tar.bz2 |
Rename KeymasterException to KeyStoreException.
The code in question talks to KeyStore which returns error codes
which are a mix of keystore and keymaster error codes. To better
match the layering of KeyStore on top of keystore and keymaster,
this CL renames KeymasterException into KeyStoreException. It also
adds human-readable error messages to exceptions raised by keystore
rather than keymaster (e.g., key not found).
Bug: 18088752
Change-Id: I4cd1235e16518c9f2e8c5557a457774c6e687b88
Diffstat (limited to 'keystore/java/android/security/KeyStoreCipherSpi.java')
-rw-r--r-- | keystore/java/android/security/KeyStoreCipherSpi.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/keystore/java/android/security/KeyStoreCipherSpi.java b/keystore/java/android/security/KeyStoreCipherSpi.java index afb5e36..ec358d6 100644 --- a/keystore/java/android/security/KeyStoreCipherSpi.java +++ b/keystore/java/android/security/KeyStoreCipherSpi.java @@ -224,7 +224,7 @@ public abstract class KeyStoreCipherSpi extends CipherSpi implements KeyStoreCry if (opResult == null) { throw new KeyStoreConnectException(); } else if (opResult.resultCode != KeyStore.NO_ERROR) { - throw KeymasterUtils.getCryptoOperationException(opResult.resultCode); + throw KeyStore.getCryptoOperationException(opResult.resultCode); } if (opResult.token == null) { @@ -250,8 +250,8 @@ public abstract class KeyStoreCipherSpi extends CipherSpi implements KeyStoreCry byte[] output; try { output = mMainDataStreamer.update(input, inputOffset, inputLen); - } catch (KeymasterException e) { - throw KeymasterUtils.getCryptoOperationException(e); + } catch (KeyStoreException e) { + throw KeyStore.getCryptoOperationException(e); } if (output.length == 0) { @@ -285,7 +285,7 @@ public abstract class KeyStoreCipherSpi extends CipherSpi implements KeyStoreCry byte[] output; try { output = mMainDataStreamer.doFinal(input, inputOffset, inputLen); - } catch (KeymasterException e) { + } catch (KeyStoreException e) { switch (e.getErrorCode()) { case KeymasterDefs.KM_ERROR_INVALID_INPUT_LENGTH: throw new IllegalBlockSizeException(); @@ -294,7 +294,7 @@ public abstract class KeyStoreCipherSpi extends CipherSpi implements KeyStoreCry case KeymasterDefs.KM_ERROR_VERIFICATION_FAILED: throw new AEADBadTagException(); default: - throw KeymasterUtils.getCryptoOperationException(e); + throw KeyStore.getCryptoOperationException(e); } } |