Skip to content

Commit

Permalink
ci: Replace signature with hash
Browse files Browse the repository at this point in the history
  • Loading branch information
tmathern committed Feb 5, 2025
1 parent c24a355 commit c97321f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/src/manifest_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -591,14 +591,14 @@ impl std::fmt::Display for ManifestStore {
}

json = b64_tag(json, "hash");
json = b64_tag(json, "signature");

// list of tags to omit (padding tags)
// Reason of padding, see note at:
// https://c2pa.org/specifications/specifications/2.1/specs/C2PA_Specification.html#_going_back_and_filling_in
json = omit_tag(json, "pad");
json = omit_tag(json, "pad1");
json = omit_tag(json, "pad2");
json = omit_tag(json, "signature");

f.write_str(&json)
}
Expand Down

0 comments on commit c97321f

Please sign in to comment.