Skip to content

Commit

Permalink
tweak tsa_url
Browse files Browse the repository at this point in the history
Signed-off-by: William Woodruff <[email protected]>
  • Loading branch information
woodruffw committed Mar 26, 2024
1 parent 32b066c commit d7222cd
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 17 deletions.
2 changes: 1 addition & 1 deletion gen/jsonschema/schemas/ClientTrustConfig.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
},
"tsaUrl": {
"type": "string",
"description": "A URL to a Sigstore-compatible Time Stamping Authority (TSA). This URL **MUST** be the \"base\" URL for the TSA, which clients should construct appropriate API endpoints on top of."
"description": "A URL to an RFC 3161 Time Stamping Authority (TSA). This URL **MUST** be the **full** URL for the TSA, meaning that it should be suitable for submitting Time Stamp Requests (TSRs) to via HTTP, per RFC 3161."
}
},
"additionalProperties": false,
Expand Down
2 changes: 1 addition & 1 deletion gen/jsonschema/schemas/SigningConfig.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"tsaUrl": {
"type": "string",
"description": "A URL to a Sigstore-compatible Time Stamping Authority (TSA). This URL **MUST** be the \"base\" URL for the TSA, which clients should construct appropriate API endpoints on top of."
"description": "A URL to an RFC 3161 Time Stamping Authority (TSA). This URL **MUST** be the **full** URL for the TSA, meaning that it should be suitable for submitting Time Stamp Requests (TSRs) to via HTTP, per RFC 3161."
}
},
"additionalProperties": false,
Expand Down
7 changes: 4 additions & 3 deletions gen/pb-go/trustroot/v1/sigstore_trustroot.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,11 @@ pub struct SigningConfig {
/// which clients should construct appropriate API endpoints on top of.
#[prost(string, tag = "3")]
pub tlog_url: ::prost::alloc::string::String,
/// A URL to a Sigstore-compatible Time Stamping Authority (TSA).
/// A URL to an RFC 3161 Time Stamping Authority (TSA).
///
/// This URL **MUST** be the "base" URL for the TSA, which clients
/// should construct appropriate API endpoints on top of.
/// This URL **MUST** be the **full** URL for the TSA, meaning that it
/// should be suitable for submitting Time Stamp Requests (TSRs) to
/// via HTTP, per RFC 3161.
#[prost(string, tag = "4")]
pub tsa_url: ::prost::alloc::string::String,
}
Expand Down
Binary file not shown.
7 changes: 4 additions & 3 deletions gen/pb-typescript/src/__generated__/sigstore_trustroot.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions protos/sigstore_trustroot.proto
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,11 @@ message SigningConfig {
// which clients should construct appropriate API endpoints on top of.
string tlog_url = 3;

// A URL to a Sigstore-compatible Time Stamping Authority (TSA).
// A URL to an RFC 3161 Time Stamping Authority (TSA).
//
// This URL **MUST** be the "base" URL for the TSA, which clients
// should construct appropriate API endpoints on top of.
// This URL **MUST** be the **full** URL for the TSA, meaning that it
// should be suitable for submitting Time Stamp Requests (TSRs) to
// via HTTP, per RFC 3161.
string tsa_url = 4;
}

Expand Down

0 comments on commit d7222cd

Please sign in to comment.