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

/system/vold/
H A DCommandListener.cpp546 } else if (!strcmp(type, "password")) {
594 "default|password|pin|pattern [passwd]";
624 "default|password|pin|pattern [newpasswd]";
625 const char* password; local
627 password = "";
629 password = argv[3];
640 rc = cryptfs_changepw(type, password);
692 cli->sendMsg(ResponseCode::PasswordTypeResult, "password", false);
711 char* password = cryptfs_get_password(); local
712 if (password) {
[all...]
H A Dcryptfs.c282 /* Store password when userdata is successfully decrypted and mounted.
286 * password and pass it to KeyGuard, which uses it to unlock KeyStore.
288 * we have to use a daemon or similar to store the password. Since vold
292 * password should be cleared once it has been used.
294 * password is aged out after password_max_age_seconds seconds.
296 static char* password = 0; variable
595 * It will get updated later to KDF_SCRYPT after the password has been verified.
1180 /* Turn the password into a key and IV that can decrypt the master key */
1203 /* Turn the password into a key and IV that can decrypt the master key */
1274 /* Turn the password int
[all...]
/system/security/keystore/
H A DIKeystoreService.cpp214 virtual int32_t password(const String16& password) argument
218 data.writeString16(password);
221 ALOGD("password() could not contact remote: %d\n", status);
227 ALOGD("password() caught exception %d\n", err);
251 virtual int32_t unlock(const String16& password) argument
255 data.writeString16(password);
622 virtual int32_t password_uid(const String16& password, int32_t uid) argument
626 data.writeString16(password);
736 int32_t ret = password(pas
956 String16 password = data.readString16(); local
[all...]
H A Dkeystore.cpp68 * user-defined password. To keep things simple, buffers are always larger than
178 "password",
1741 * file using the same password when the user unlock it for the first time. If
1745 int32_t password(const String16& password) { argument
1749 ALOGW("permission denied for %d: password", callingUid);
1753 const String8 password8(password);
1757 // generate master key, encrypt with password, write to file, initialize mMasterKey*.
1761 // rewrite master key with new password.
1765 // read master key, decrypt with password, initializ
[all...]

Completed in 586 milliseconds