Home | History | Annotate | Download | only in apps

Lines Matching defs:out_buf

314     static char out_buf[6 + 9 + 24 + 2];
327 out_buf[0] = 0;
351 OPENSSL_strlcat(out_buf, ascii_dollar, sizeof(out_buf));
356 OPENSSL_strlcat(out_buf, ascii_magic, sizeof(out_buf));
357 OPENSSL_strlcat(out_buf, ascii_dollar, sizeof(out_buf));
360 OPENSSL_strlcat(out_buf, ascii_salt, sizeof(out_buf));
362 if (strlen(out_buf) > 6 + 8) /* assert "$apr1$..salt.." */
365 salt_out = out_buf;
457 assert(output == out_buf + strlen(out_buf));
473 assert(strlen(out_buf) < sizeof(out_buf));
475 ascii2ebcdic(out_buf, out_buf, strlen(out_buf));
479 return out_buf;
507 static char out_buf[3 + 17 + 17 + 86 + 1];
583 out_buf[0] = 0;
584 OPENSSL_strlcat(out_buf, ascii_dollar, sizeof(out_buf));
585 OPENSSL_strlcat(out_buf, ascii_magic, sizeof(out_buf));
586 OPENSSL_strlcat(out_buf, ascii_dollar, sizeof(out_buf));
595 OPENSSL_strlcat(out_buf, tmp_buf, sizeof(out_buf));
596 OPENSSL_strlcat(out_buf, ascii_dollar, sizeof(out_buf));
598 OPENSSL_strlcat(out_buf, ascii_salt, sizeof(out_buf));
601 if (strlen(out_buf) > 3 + 17 * rounds_custom + salt_len )
703 cp = out_buf + strlen(out_buf);
760 ascii2ebcdic(out_buf, out_buf, strlen(out_buf));
763 return out_buf;