Home | History | Annotate | Download | only in netinet

Lines Matching defs:f_ctx

512 	MD5_CTX f_ctx;
520 MD5Init(&f_ctx);
524 MD5Update(&f_ctx, (const u_char *)&const_in4p_laddr(inp),
526 MD5Update(&f_ctx, (const u_char *)&const_in4p_faddr(inp),
528 MD5Update(&f_ctx, (const u_char *)&inp->inp_fport,
535 MD5Update(&f_ctx, (const u_char *)&const_in6p_laddr(inp),
537 MD5Update(&f_ctx, (const u_char *)&const_in6p_faddr(inp),
539 MD5Update(&f_ctx, (const u_char *)&inp->inp_fport,
547 MD5Update(&f_ctx, (const u_char *)secret_f, sizeof(secret_f));
548 MD5Final((u_char *)&Ff, &f_ctx);