/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/ |
H A D | SyntheticPasswordTests.java | 185 LockscreenCredential password = newPassword("password"); in testVerifyCredential() local 199 LockscreenCredential password = newPassword("password"); in testClearCredential() local 217 LockscreenCredential password = newPassword("password"); in testChangeCredentialKeepsAuthSecret() local 235 LockscreenCredential password = newPassword("password"); in testVerifyPassesPrimaryUserAuthSecret() local 246 LockscreenCredential password = newPassword("password"); in testSecondaryUserDoesNotPassAuthSecret() local 265 LockscreenCredential password = newPassword("password"); in testUnlockUserKeyIfUnsecuredPassesPrimaryUserAuthSecretIfPasswordIsCleared() local 326 LockscreenCredential password = newPassword("password"); in testTokenBasedResetPassword() local 361 LockscreenCredential password = newPassword("password"); in testTokenBasedClearPassword() local 386 LockscreenCredential password = newPassword("password"); in testTokenBasedResetPasswordAfterCredentialChanges() local 421 LockscreenCredential password = newPassword("password"); in testEscrowTokenActivatedLaterWithUserPassword() local [all …]
|
H A D | WeakEscrowTokenTests.java | 78 LockscreenCredential password = newPassword("password"); in testWeakTokenActivatedLaterWithUserPassword() local 100 LockscreenCredential password = newPassword("password"); in testWeakTokensRemovedIfCredentialChanged() local 159 LockscreenCredential password = newPassword("password"); in testUnlockUserWithToken_weakEscrowToken() local
|
/aosp14/frameworks/base/core/tests/coretests/src/com/android/internal/widget/ |
H A D | LockscreenCredentialTest.java | 54 LockscreenCredential password = LockscreenCredential.createPassword("password"); in testPasswordCredential() local 102 LockscreenCredential password = LockscreenCredential.createPassword("password"); in testSanitize() local 181 String password = "1234"; in testPasswordToHistoryHash() local 197 String password = "1234"; in testPasswordToHistoryHashInvalidInput() local 225 String password = "1234"; in testLegacyPasswordToHash() local 237 String password = "1234"; in testLegacyPasswordToHashInvalidInput() local
|
/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/backup/ |
H A D | BackupPasswordManagerTest.java | 96 String password = "password1234"; in backupPasswordMatches_isTrueForSamePassword() local 109 String password = "corgi\uFFFF"; in backupPasswordMatches_worksForV1HashIfVersionIsV1() local 124 String password = "corgi\uFFFF"; in backupPasswordMatches_failsForV1HashIfVersionIsV2() local 146 String password = "shiba"; in setBackupPassword_persistsPasswordToFile() local 193 private void writeV1HashToFile(String password, byte[] salt) throws Exception { in writeV1HashToFile()
|
/ohos5.0/base/security/crypto_framework/test/unittest/src/ |
H A D | crypto_pbkdf2_test.cpp | 68 HcfBlob password = {.data = reinterpret_cast<uint8_t *>(const_cast<char *>(g_password)), variable 91 HcfBlob password = {.data = reinterpret_cast<uint8_t *>(const_cast<char *>(g_password)), variable 114 HcfBlob password = {.data = nullptr, .len = 0}; variable 159 HcfBlob password = {.data = reinterpret_cast<uint8_t *>(const_cast<char *>(g_passwordLong)), variable 183 HcfBlob password = {.data = reinterpret_cast<uint8_t *>(const_cast<char *>(g_passwordLong)), variable 206 HcfBlob password = {.data = reinterpret_cast<uint8_t *>(const_cast<char *>(g_password)), variable 229 HcfBlob password = {.data = reinterpret_cast<uint8_t *>(const_cast<char *>(g_password)), variable 252 HcfBlob password = {.data = reinterpret_cast<uint8_t *>(const_cast<char *>(g_password)), variable 275 HcfBlob password = {.data = reinterpret_cast<uint8_t *>(const_cast<char *>(g_password)), variable 298 HcfBlob password = {.data = reinterpret_cast<uint8_t *>(const_cast<char *>(g_password)), variable [all …]
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bouncer/ui/viewmodel/ |
H A D | PasswordBouncerViewModelTest.kt | 78 val password by collectLastValue(underTest.password) regex 99 val password by collectLastValue(underTest.password) regex 141 val password by collectLastValue(underTest.password) regex 164 val password by collectLastValue(underTest.password) regex
|
/aosp14/frameworks/base/core/java/android/security/ |
H A D | Scrypt.java | 26 native byte[] nativeScrypt(byte[] password, byte[] salt, int n, int r, int p, int outLen); in nativeScrypt() 29 public byte[] scrypt(byte[] password, byte[] salt, int n, int r, int p, int outLen) { in scrypt()
|
/aosp14/frameworks/base/core/java/com/android/internal/widget/ |
H A D | LockscreenCredential.java | 107 public static LockscreenCredential createPassword(@NonNull CharSequence password) { in createPassword() 118 public static LockscreenCredential createManagedPassword(@NonNull byte[] password) { in createManagedPassword() 135 public static LockscreenCredential createPasswordOrNone(@Nullable CharSequence password) { in createPasswordOrNone() 299 public static String legacyPasswordToHash(byte[] password, byte[] salt) { in legacyPasswordToHash()
|
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/kvdb/ |
H A D | upgrade.cpp | 58 DBPassword password; in UpdateStore() local 83 DBPassword password; in ExportStore() local 91 void Upgrade::UpdatePassword(const StoreMeta &meta, const std::vector<uint8_t> &password) in UpdatePassword() 146 DBPassword password; in GetDBStore() local
|
/aosp14/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/ |
H A D | WifiAssociationTest.java | 64 String password = arguments.getString("password"); in testWifiAssociation() local 80 private WifiConfiguration getConfig(String ssid, SecurityType securityType, String password) { in getConfig()
|
/aosp14/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ |
H A D | WifiConfigurationHelper.java | 72 public static WifiConfiguration createWepConfig(String ssid, String password) { in createWepConfig() 94 public static WifiConfiguration createPskConfig(String ssid, String password) { in createPskConfig() 119 public static WifiConfiguration createEapConfig(String ssid, String password, int eapMethod, in createEapConfig() 198 String password = null; in getWifiConfiguration() local
|
H A D | ConnectivityManagerTestRunner.java | 62 String password = (String) icicle.get("password"); in onCreate() local
|
/aosp14/frameworks/base/core/java/android/webkit/ |
H A D | HttpAuthHandler.java | 71 public void proceed(String username, String password) { in proceed()
|
/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/ril/ |
H A D | _call_restriction_info_v10.md | 52 ### password subsection
|
H A D | _call_restriction_info_v11.md | 52 ### password subsection
|
H A D | _data_profile_data_info_v10.md | 59 ### password subsection
|
H A D | _data_profile_data_info_v11.md | 59 ### password subsection
|
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/ |
H A D | meta_data_test.cpp | 137 std::vector<uint8_t> password {}; variable 156 std::vector<uint8_t> password {}; variable
|
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/ |
H A D | MockScrypt.java | 31 public byte[] scrypt(byte[] password, byte[] salt, int n, int r, int p, int outLen) { in scrypt()
|
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webview/ |
H A D | ark_ohos_web_data_base_adapter_impl.cpp | 35 … ArkWebString& host, const ArkWebString& realm, const ArkWebString& username, const char* password) in SaveHttpAuthCredentials() 42 …const ArkWebString& host, const ArkWebString& realm, ArkWebString& username, char* password, uint3… in GetHttpAuthCredentials()
|
/ohos5.0/base/web/webview/test/fuzztest/ohos_adapter/distributeddatamgr_adapter/webdatabase/gethttpauthcredentials_fuzzer/ |
H A D | gethttpauthcredentials_fuzzer.cpp | 35 char password[maxLen + 1] = { 0 }; in GetHttpAuthCredentialsFuzzTest() local
|
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webcore/ |
H A D | ark_web_data_base_impl.cpp | 32 ArkWebString& user_name, char* password, uint32_t password_size) in GetHttpAuthCredentials() 41 …ArkWebString& host, const ArkWebString& realm, const ArkWebString& user_name, const char* password) in SaveHttpAuthCredentials()
|
/aosp14/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/ |
H A D | KeyStoreProxy.java | 37 Key getKey(String alias, char[] password) in getKey()
|
/ohos5.0/base/security/crypto_framework/interfaces/innerkits/algorithm_parameter/ |
H A D | detailed_pbkdf2_params.h | 26 HcfBlob password; member
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/ui/viewmodel/ |
H A D | PasswordBouncerViewModel.kt | 56 val password = _password.value.toCharArray().toList() regex
|