Searched defs:rounds (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/services/backup/java/com/android/server/backup/utils/
H A DPasswordUtils.java48 * @param rounds - number of rounds to run in key generation.
51 public static SecretKey buildPasswordKey(String algorithm, String pw, byte[] salt, int rounds) { argument
52 return buildCharArrayKey(algorithm, pw.toCharArray(), salt, rounds);
62 * @param rounds - number of rounds to run in key generation.
65 public static String buildPasswordHash(String algorithm, String pw, byte[] salt, int rounds) { argument
66 SecretKey key = buildPasswordKey(algorithm, pw, salt, rounds);
108 * @param rounds - number of rounds t
111 makeKeyChecksum(String algorithm, byte[] pwBytes, byte[] salt, int rounds) argument
122 buildCharArrayKey(String algorithm, char[] pwArray, byte[] salt, int rounds) argument
[all...]
/frameworks/base/services/backup/java/com/android/server/backup/restore/
H A DPerformAdbRestoreTask.java315 int rounds, String userIvHex, String masterKeyBlobHex, InputStream rawInStream,
323 rounds);
349 rounds);
407 int rounds = Integer.parseInt(readHeaderLine(rawInStream)); // 7
414 userSalt, ckSalt, rounds, userIvHex, masterKeyBlobHex, rawInStream, false);
418 rounds, userIvHex, masterKeyBlobHex, rawInStream, true);
313 attemptMasterKeyDecryption(String decryptPassword, String algorithm, byte[] userSalt, byte[] ckSalt, int rounds, String userIvHex, String masterKeyBlobHex, InputStream rawInStream, boolean doLog) argument
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java1664 private SecretKey buildPasswordKey(String algorithm, String pw, byte[] salt, int rounds) { argument
1665 return buildCharArrayKey(algorithm, pw.toCharArray(), salt, rounds);
1668 private SecretKey buildCharArrayKey(String algorithm, char[] pwArray, byte[] salt, int rounds) { argument
1671 KeySpec ks = new PBEKeySpec(pwArray, salt, rounds, PBKDF2_KEY_SIZE);
1681 private String buildPasswordHash(String algorithm, String pw, byte[] salt, int rounds) { argument
1682 SecretKey key = buildPasswordKey(algorithm, pw, salt, rounds);
1710 private byte[] makeKeyChecksum(String algorithm, byte[] pwBytes, byte[] salt, int rounds) { argument
1716 Key checksum = buildCharArrayKey(algorithm, mkAsChar, salt, rounds);
1727 boolean passwordMatchesSaved(String algorithm, String candidatePw, int rounds) { argument
1736 String currentPwHash = buildPasswordHash(algorithm, candidatePw, mPasswordSalt, rounds);
7285 attemptMasterKeyDecryption(String algorithm, byte[] userSalt, byte[] ckSalt, int rounds, String userIvHex, String masterKeyBlobHex, InputStream rawInStream, boolean doLog) argument
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 119 milliseconds