Searched refs:mIv (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreUnauthenticatedAESCipherSpi.java99 private byte[] mIv; field in class:AndroidKeyStoreUnauthenticatedAESCipherSpi
101 /** Whether the current {@code #mIv} has been used by the underlying crypto operation. */
115 mIv = null;
174 mIv = ((IvParameterSpec) params).getIV();
175 if (mIv == null) {
215 mIv = null;
218 mIv = ivSpec.getIV();
219 if (mIv == null) {
226 if ((mIvRequired) && (mIv == null) && (isEncrypting())) {
252 if ((mIvRequired) && (mIv !
[all...]
H A DAndroidKeyStoreAuthenticatedAESCipherSpi.java254 private byte[] mIv; field in class:AndroidKeyStoreAuthenticatedAESCipherSpi
256 /** Whether the current {@code #mIv} has been used by the underlying crypto operation. */
268 mIv = null;
300 if (mIv != null) {
301 keymasterArgs.addBytes(KeymasterDefs.KM_TAG_NONCE, mIv);
316 if (mIv == null) {
317 mIv = returnedIv;
318 } else if ((returnedIv != null) && (!Arrays.equals(returnedIv, mIv))) {
330 return ArrayUtils.cloneIfNotEmpty(mIv);
334 mIv
[all...]

Completed in 150 milliseconds