Home
last modified time | relevance | path

Searched defs:iv (Results 1 – 5 of 5) sorted by relevance

/development/samples/BrokenKeyDerivation/src/com/example/android/brokenkeyderivation/
DBrokenKeyDerivationActivity.java158 byte[] data, SecretKey key, byte[] iv, boolean isEncrypt) { in encryptOrDecrypt()
169 private static byte[] encryptData(byte[] data, byte[] iv, SecretKey key) { in encryptData()
173 private static byte[] decryptData(byte[] data, byte[] iv, SecretKey key) { in decryptData()
/development/samples/browseable/RecipeAssistant/Application/src/com.example.android.wearable.recipeassistant/
DRecipeActivity.java119 ImageView iv = (ImageView) view.findViewById(R.id.stepImageView); in displayRecipe() local
DRecipeListAdapter.java123 ImageView iv = (ImageView) view.findViewById(R.id.imageView); in getView() local
/development/samples/browseable/NavigationDrawer/src/com.example.android.navigationdrawer/
DNavigationDrawerActivity.java238 ImageView iv = ((ImageView) rootView.findViewById(R.id.image)); in onCreateView() local
/development/samples/Vault/src/com/example/android/vault/
DEncryptedDocument.java360 final byte[] iv = new byte[DATA_KEY_LENGTH]; field in EncryptedDocument.Section