Home | History | Annotate | Download | only in openssh

Lines Matching refs:magic

24 static char *magic = "$1$";
47 return (strncmp(salt, magic, strlen(magic)) == 0);
63 /* If it starts with the magic string, then skip that */
64 if(strncmp(sp, magic, strlen(magic)) == 0)
65 sp += strlen(magic);
85 /* Then our magic string */
86 MD5_Update(&ctx, magic, strlen(magic));
112 snprintf(passwd, sizeof(passwd), "%s%s$", magic, salt_copy);