Home | History | Annotate | Download | only in settings

Lines Matching full:credentials

32 import android.security.Credentials;
175 Log.w(TAG, "Removing credentials", e);
195 * Opens a background connection to KeyStore to list user credentials.
196 * The credentials are stored in a {@link CredentialAdapter} attached to the main
203 SortedMap<String, Credential> credentials = new TreeMap<>();
207 // Do not show work profile keys in user credentials
212 Credential c = credentials.get(alias);
214 credentials.put(alias, (c = new Credential(alias)));
219 return credentials;
223 protected void onPostExecute(SortedMap<String, Credential> credentials) {
226 credentials.values().toArray(new Credential[0])));
258 CA_CERTIFICATE (Credentials.CA_CERTIFICATE),
259 USER_CERTIFICATE (Credentials.USER_CERTIFICATE),
260 USER_PRIVATE_KEY (Credentials.USER_PRIVATE_KEY),
261 USER_SECRET_KEY (Credentials.USER_SECRET_KEY);
279 * <li>{@link Credentials.CA_CERTIFICATE}</li>
280 * <li>{@link Credentials.USER_CERTIFICATE}</li>
281 * <li>{@link Credentials.USER_PRIVATE_KEY}</li>
282 * <li>{@link Credentials.USER_SECRET_KEY}</li>