Lines Matching refs:password

21 	BPasswordKey password(passwordString, B_KEY_PURPOSE_GENERIC, identifier,
24 status_t result = keyStore.AddKey(keyring, password);
26 printf("failed to add password: %s\n", strerror(result));
39 BPasswordKey password;
42 secondaryIdentifier, false, password);
44 printf("failed to get password \"%s\": %s\n", identifier,
49 result = keyStore.RemoveKey(keyring, password);
51 printf("failed to remove password: %s\n", strerror(result));
96 BPasswordKey password;
98 B_KEY_PURPOSE_ANY, cookie, password);
107 password.PrintToStream();
237 BPasswordKey password(passwordString, B_KEY_PURPOSE_KEYRING, NULL);
239 status_t result = keyStore.SetUnlockKey(keyring, password);
277 printf("\t%s add password <identifier> [<secondaryIdentifier>] <password>"
279 printf("\t\tAdds the specified password to the master keyring.\n");
280 printf("\t%s add password to <keyring> <identifier> [<secondaryIdentifier>]"
281 " <password>\n", name);
282 printf("\t\tAdds the specified password to the specified keyring.\n\n");
284 printf("\t%s remove password <identifier> [<secondaryIdentifier>]\n", name);
285 printf("\t\tRemoves the specified password from the master keyring.\n");
286 printf("\t%s remove password from <keyring> <identifier>"
288 printf("\t\tRemoves the specified password from the specified keyring.\n\n");
318 printf("\t%s key set <keyring> <password>\n", name);
320 " password.\n");
349 if (strcmp(argv[2], "password") == 0) {
356 const char* password = NULL;
361 password = argv[6];
364 password = argv[7];
369 password = argv[4];
372 password = argv[5];
376 if (password != NULL) {
378 password);
390 if (strcmp(argv[2], "password") == 0) {