HomeSort by relevance Sort by last modified time
    Searched full:credentials (Results 176 - 200 of 864) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/base/packages/Osu/src/com/android/hotspot2/
AuthMatch.java 4 * Match score for EAP credentials:
  /frameworks/support/compat/java/android/support/v4/os/
UserManagerCompat.java 34 * is unlocked only after they've entered their credentials (such as a lock
  /packages/apps/CertInstaller/res/values-en-rAU/
strings.xml 68 <string name="install_done_title" msgid="4822989918460334497">"Credentials installed"</string>
69 <string name="install_done" msgid="1522718684172097080">"<xliff:g id="NAME">%1$s</xliff:g> credentials have been added to Wi-Fi saved networks."</string>
71 <string name="wifi_installer_detail" msgid="63879632832701669">"Install Wi-Fi credentials to connect to networks available via <xliff:g id="NAME">%1$s</xliff:g>."</string>
73 <string name="wifi_installer_fail" msgid="894483173306576331">"Can\'t install Wi-Fi credentials. Try downloading the file again."</string>
  /packages/apps/CertInstaller/res/values-en-rCA/
strings.xml 68 <string name="install_done_title" msgid="4822989918460334497">"Credentials installed"</string>
69 <string name="install_done" msgid="1522718684172097080">"<xliff:g id="NAME">%1$s</xliff:g> credentials have been added to Wi-Fi saved networks."</string>
71 <string name="wifi_installer_detail" msgid="63879632832701669">"Install Wi-Fi credentials to connect to networks available via <xliff:g id="NAME">%1$s</xliff:g>."</string>
73 <string name="wifi_installer_fail" msgid="894483173306576331">"Can\'t install Wi-Fi credentials. Try downloading the file again."</string>
  /packages/apps/CertInstaller/res/values-en-rGB/
strings.xml 68 <string name="install_done_title" msgid="4822989918460334497">"Credentials installed"</string>
69 <string name="install_done" msgid="1522718684172097080">"<xliff:g id="NAME">%1$s</xliff:g> credentials have been added to Wi-Fi saved networks."</string>
71 <string name="wifi_installer_detail" msgid="63879632832701669">"Install Wi-Fi credentials to connect to networks available via <xliff:g id="NAME">%1$s</xliff:g>."</string>
73 <string name="wifi_installer_fail" msgid="894483173306576331">"Can\'t install Wi-Fi credentials. Try downloading the file again."</string>
  /packages/apps/CertInstaller/res/values-en-rIN/
strings.xml 68 <string name="install_done_title" msgid="4822989918460334497">"Credentials installed"</string>
69 <string name="install_done" msgid="1522718684172097080">"<xliff:g id="NAME">%1$s</xliff:g> credentials have been added to Wi-Fi saved networks."</string>
71 <string name="wifi_installer_detail" msgid="63879632832701669">"Install Wi-Fi credentials to connect to networks available via <xliff:g id="NAME">%1$s</xliff:g>."</string>
73 <string name="wifi_installer_fail" msgid="894483173306576331">"Can\'t install Wi-Fi credentials. Try downloading the file again."</string>
  /packages/apps/CertInstaller/res/values-en-rXC/
strings.xml 68 <string name="install_done_title" msgid="4822989918460334497">"????????????????????????????????????????????????????????????????????????????????????????????????Credentials installed??????"</string>
69 <string name="install_done" msgid="1522718684172097080">"?????????????????????????????????????????????????????????????????????????????????????????????????????<xliff:g id="NAME">%1$s</xliff:g>???????? credentials have been added to Wi-Fi saved networks.??????"</string>
71 <string name="wifi_installer_detail" msgid="63879632832701669">"?????????????????????????????????????????????????????????????????????????????????????????Install Wi-Fi credentials to connect to networks available via ???????<xliff:g id="NAME">%1$s</xliff:g>????????.??????"</string>
73 <string name="wifi_installer_fail" msgid="894483173306576331">"?????????????????????????????????????????????????????????????????????????????????????????????Can\'t install Wi-Fi credentials. Try downloading the file again.??????"</string>
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountCredentials.java 18 private static final String CREDENTIALS_FRAGMENT_TAG = "credentials";
  /packages/apps/KeyChain/support/src/com/android/keychain/tests/support/
IKeyChainServiceTestSupport.aidl 27 * com.android.credentials.UNLOCK Intent and
  /external/libcups/cups/
tls-boringssl.c 100 * '_httpCreateCredentials()' - Create credentials in the internal format.
103 http_tls_credentials_t /* O - Internal credentials */
105 cups_array_t *credentials) /* I - Array of credentials */
107 (void)credentials;
114 * '_httpFreeCredentials()' - Free internal credentials.
119 http_tls_credentials_t credentials) /* I - Internal credentials */
121 (void)credentials;
451 _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("Server credentials not set."), 1)
    [all...]
http.h 343 typedef enum http_trust_e /**** Level of trust for credentials @since CUPS 2.0/OS 10.10@ */
345 HTTP_TRUST_OK = 0, /* Credentials are OK/trusted */
346 HTTP_TRUST_INVALID, /* Credentials are invalid */
347 HTTP_TRUST_CHANGED, /* Credentials have changed */
348 HTTP_TRUST_EXPIRED, /* Credentials are expired */
349 HTTP_TRUST_RENEWED, /* Credentials have been renewed */
350 HTTP_TRUST_UNKNOWN, /* Credentials are unknown/new */
571 extern int httpAddCredential(cups_array_t *credentials,
575 cups_array_t **credentials)
625 extern int httpCredentialsAreValidForName(cups_array_t *credentials, const char *common_name)
    [all...]
  /packages/apps/KeyChain/src/com/android/keychain/
KeyChainService.java 35 import android.security.Credentials;
102 final String keystoreAlias = Credentials.USER_PRIVATE_KEY + alias;
109 return mKeyStore.get(Credentials.USER_CERTIFICATE + alias);
114 return mKeyStore.get(Credentials.CA_CERTIFICATE + alias);
165 Log.e(TAG, "Keystore is " + mKeyStore.state().toString() + ". Credentials cannot"
172 if (!mKeyStore.importKey(Credentials.USER_PRIVATE_KEY + alias, privateKey, -1,
177 if (!mKeyStore.put(Credentials.USER_CERTIFICATE + alias, userCertificate, -1,
180 if (!mKeyStore.delete(Credentials.USER_PRIVATE_KEY + alias)) {
186 if (!mKeyStore.put(Credentials.CA_CERTIFICATE + alias, userCertificateChain, -1,
203 if (!Credentials.deleteAllTypesForAlias(mKeyStore, alias))
    [all...]
  /developers/build/prebuilts/gradle/ConfirmCredential/Application/src/main/java/com/example/android/confirmcredential/
MainActivity.java 96 * only works if the user has just authenticated via device credentials.
116 // User is not authenticated, let's authenticate with device credentials.
135 * authenticated with device credentials within the last X seconds.
138 // Generate a key to decrypt payment credentials, tokens, etc.
165 // Create the Confirm Credentials screen. You can customize the title and description. Or
  /developers/samples/android/security/ConfirmCredential/Application/src/main/java/com/example/android/confirmcredential/
MainActivity.java 96 * only works if the user has just authenticated via device credentials.
116 // User is not authenticated, let's authenticate with device credentials.
135 * authenticated with device credentials within the last X seconds.
138 // Generate a key to decrypt payment credentials, tokens, etc.
165 // Create the Confirm Credentials screen. You can customize the title and description. Or
  /packages/apps/CertInstaller/res/values/
strings.xml 92 <!-- Toast message to be displayed when installing Hotspot 2.0 credentials [CHAR LIMIT=40] -->
103 <string name="install_done_title">Credentials installed</string>
104 <string name="install_done"><xliff:g id="name">%1$s</xliff:g> credentials have been added to Wi-Fi saved networks&#46;</string>
106 <string name="wifi_installer_detail">Install Wi-Fi credentials to connect to networks available via <xliff:g id="name">%1$s</xliff:g>&#46;</string>
108 <string name="wifi_installer_fail">Can\'t install Wi-Fi credentials&#46; Try downloading the file again&#46;</string>
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Bis.h 247 indicated credentials.
251 @param Credentials A Signed Manifest containing verification information for the indicated
262 @retval EFI_SECURITY_VIOLATION The signed manifest supplied as the Credentials parameter
271 IN EFI_BIS_DATA *Credentials,
362 credentials and authority certificate.
366 @param Credentials A Signed Manifest containing verification information for the
373 public key which is found in the credentials.
382 @retval EFI_SECURITY_VIOLATION The Credentials.Data supplied by the caller is NULL,
394 IN EFI_BIS_DATA *Credentials,
  /frameworks/base/core/java/android/app/
KeyguardManager.java 65 * Intent used to prompt user for device credentials.
72 * Intent used to prompt user for device credentials.
79 * Intent used to prompt user for factory reset credentials.
117 * Get an intent to prompt the user to confirm credentials (pin, pattern or password)
136 * Get an intent to prompt the user to confirm credentials (pin, pattern or password)
160 * Get an intent to prompt the user to confirm credentials (pin, pattern or password)
171 * verifying credentials after a factory reset, or device setup has already been completed).
178 Log.w(TAG, "Factory reset credentials not supported.");
465 * UI so the user can enter their credentials.
  /external/openssh/
gss-serv.c 92 * Acquire credentials for a server running on the current host.
173 * credentials (from ssh_gssapi_acquire_cred)
192 debug("Received some client credentials");
194 debug("Got no client credentials");
342 * on the passed authentication process and credentials.
373 /* Destroy delegated credentials if userok fails */
  /frameworks/base/wifi/tests/src/android/net/wifi/
WifiEnterpriseConfigTest.java 30 import android.security.Credentials;
47 public static final String CA_CERT_PREFIX = KEYSTORE_URI + Credentials.CA_CERTIFICATE;
177 WifiEnterpriseConfig.encodeCaCertificateAlias(Credentials.CA_CERTIFICATE + alias0),
178 WifiEnterpriseConfig.encodeCaCertificateAlias(Credentials.CA_CERTIFICATE + alias1)));
187 WifiEnterpriseConfig.encodeCaCertificateAlias(Credentials.CA_CERTIFICATE + alias0),
188 WifiEnterpriseConfig.encodeCaCertificateAlias(Credentials.CA_CERTIFICATE + alias1)));
  /docs/source.android.com/en/security/encryption/
index.html 43 provide their credentials before any part of the disk is accessible.
68 credentials while still protecting private user information.
  /external/apache-http/src/org/apache/http/auth/params/
AuthParams.java 62 * {@link org.apache.http.auth.Credentials}.
88 * {@link org.apache.http.auth.Credentials}.
  /external/apache-http/src/org/apache/http/impl/client/
DefaultUserTokenHandler.java 39 import org.apache.http.auth.Credentials;
86 Credentials creds = authState.getCredentials();
  /external/chromium-trace/catapult/dependency_manager/dependency_manager/
cloud_storage_info.py 53 CredentialsError: If cloud_storage credentials aren't configured.
54 PermissionError: If cloud_storage credentials are configured, but not
  /external/skia/tools/skp/page_sets/other/
OLD-skia_desktop_set.json 4 "credentials_path": "data/credentials.json",
39 "credentials": "facebook",
  /external/webrtc/webrtc/p2p/base/
transportdescriptionfactory.cc 30 // Generate the ICE credentials if we don't already have them.
63 // Generate the ICE credentials if we don't already have them or ice is

Completed in 903 milliseconds

1 2 3 4 5 6 78 91011>>