Home | History | Annotate | Download | only in libresolv

Lines Matching refs:signature

63  *     UPDATE (hash (more) data), FINAL (generate a signature).  This
71 * signature location to store signature.
72 * sig_len size of the signature location
74 * N Success on SIG_MODE_FINAL = returns signature length in bytes
82 u_char *signature, const int sig_len)
109 if (signature == NULL || sig_len < MD5_LEN)
111 MD5Final(signature, ctx);
116 MD5Update(ctx, signature, MD5_LEN);
117 MD5Final(signature, ctx);
134 * FINAL (generate a signature). This routine performs one or more of
141 * signature signature.
142 * sig_len length in bytes of signature.
151 const u_char *signature, const int sig_len)
176 if (signature == NULL || key == NULL || sig_len != MD5_LEN)
187 if (memcmp(digest, signature, MD5_LEN) != 0)