Home
last modified time | relevance | path

Searched refs:new_pass (Results 1 – 9 of 9) sorted by relevance

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/lxdm/lxdm/
H A D0009-greeter.c-disallow-empty-new-password.patch33 if (!new_pass) {
34 new_pass = g_strdup(gtk_entry_get_text(entry));
35 + if (strlen(new_pass) == 0) {
36 + new_pass = NULL;
46 - } else if (!strcmp(pass, g_base64_encode((guchar*)new_pass, strlen(new_pass) + 1))) {
47 + } else if (pass && !strcmp(pass, g_base64_encode((guchar*)new_pass, strlen(new_pass) + 1))) {
49 g_free(new_pass);
50 new_pass = NULL;
H A D0007-greeter.c-support-to-update-expired-password.patch26 +static char* new_pass = NULL;
37 + if (!new_pass) {
66 + if (!new_pass) {
72 + g_free(new_pass);
73 + new_pass = NULL;
84 + g_free(new_pass);
85 + new_pass = NULL;
130 + g_free(new_pass);
131 + new_pass = NULL;
164 + g_free(new_pass);
[all …]
H A D0008-greeter.c-show-information-on-gtk-label-info.patch29 new_pass = NULL;
40 } else if (!strcmp(pass, g_base64_encode((guchar*)new_pass, strlen(new_pass) + 1))) {
42 g_free(new_pass);
43 new_pass = NULL;
57 g_free(new_pass);
58 new_pass = NULL;
90 new_pass = NULL;
/openbmc/linux/drivers/acpi/nfit/
H A Dintel.h72 u8 new_pass[ND_INTEL_PASSPHRASE_SIZE]; member
106 u8 new_pass[ND_INTEL_PASSPHRASE_SIZE]; member
H A Dintel.c175 memcpy(nd_cmd.cmd.new_pass, new_data->data, in intel_security_change_key()
176 sizeof(nd_cmd.cmd.new_pass)); in intel_security_change_key()
/openbmc/linux/drivers/cxl/
H A Dsecurity.c82 memcpy(set_pass.new_pass, new_data->data, NVDIMM_PASSPHRASE_LEN); in cxl_pmem_security_change_key()
H A Dcxlmem.h835 u8 new_pass[NVDIMM_PASSPHRASE_LEN]; member
/openbmc/linux/tools/testing/cxl/test/
H A Dmem.c682 memcpy(mdata->master_pass, set_pass->new_pass, NVDIMM_PASSPHRASE_LEN); in mock_set_passphrase()
696 memcpy(mdata->user_pass, set_pass->new_pass, NVDIMM_PASSPHRASE_LEN); in mock_set_passphrase()
/openbmc/linux/tools/testing/nvdimm/test/
H A Dnfit.c998 memcpy(sec->passphrase, nd_cmd->new_pass, in nd_intel_test_cmd_set_pass()
1146 memcpy(sec->master_passphrase, nd_cmd->new_pass, in nd_intel_test_cmd_master_set_pass()