Skip to content

Commit

Permalink
Merge pull request trusteddomainproject#121 from flowerysong/arc_seal_t
Browse files Browse the repository at this point in the history
"t" is imported from RFC 6376 section 3.5, which states:

    t= Signature Timestamp (plain-text unsigned decimal integer;
       RECOMMENDED, default is an unknown creation time).  The time
       that this signature was created.

Its inclusion in this list results in spurious ARC verification
failures.

trusteddomainproject#121
  • Loading branch information
futatuki committed Sep 14, 2024
2 parents cdd07fa + 7547a83 commit 6eb8588
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions libopenarc/arc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1674,8 +1674,7 @@ arc_process_set(ARC_MESSAGE *msg, arc_kvsettype_t type, u_char *str,
arc_param_get(set, (u_char *) "b") == NULL ||
arc_param_get(set, (u_char *) "s") == NULL ||
arc_param_get(set, (u_char *) "d") == NULL ||
arc_param_get(set, (u_char *) "a") == NULL ||
arc_param_get(set, (u_char *) "t") == NULL)
arc_param_get(set, (u_char *) "a") == NULL)
{
arc_error(msg, "missing parameter(s) in %s data",
settype);
Expand Down

0 comments on commit 6eb8588

Please sign in to comment.