Searched refs:encryptedPin (Results 1 – 1 of 1) sorted by relevance
808 byte[] encryptedPin = encrypt(secretKey, StoredPin.toByteArray(storedPin)); in savePinInformation()809 if (encryptedPin.length > 0) { in savePinInformation()811 baseKey + slotId, Base64.encodeToString(encryptedPin, Base64.DEFAULT)); in savePinInformation()828 byte[] encryptedPin = encrypt(mLongTermSecretKey, StoredPin.toByteArray(storedPin)); in savePinInformationToRam()829 if (encryptedPin != null && encryptedPin.length > 0) { in savePinInformationToRam()831 mRamStorage.put(slotId, encryptedPin); in savePinInformationToRam()1148 EncryptedPin encryptedPin = new EncryptedPin(); in encrypt() local1149 encryptedPin.iv = cipher.getIV(); in encrypt()1150 encryptedPin.encryptedStoredPin = cipher.doFinal(input); in encrypt()1151 return EncryptedPin.toByteArray(encryptedPin); in encrypt()[all …]