Lines Matching defs:signature
46 * 1. The draft is a bit unclear on the input format for the signature,
95 /* signature algorithm */
101 /* the signature algorithm depends on the type of key */
299 * it is assumed that redundant signature groups
300 * and especially signature groups without an associated
304 * signature group get hashes and need memory for them
444 "Signature Groups:\n");
614 * create and send signature block
796 * function will calculate signature and return a new buffer
801 char *signature, *line;
832 if (!sign_string_sign(line+tlsprefixlen, &signature)) {
842 newlinelen = strlcat(sd, signature, linesize);
866 sign_string_sign(char *line, char **signature)
874 * The signature is calculated over the completely formatted
877 * excluding the signature field (SD Parameter Name "SIGN", "=",
900 *signature = strdup((char *)sig_b64);
903 buf, *signature);
904 return *signature != NULL;