-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Andrew Pan <andrew.pan@trailofbits.com> Signed-off-by: Jack Leightcap <jack.leightcap@trailofbits.com> Co-authored-by: Andrew Pan <a@tny.town>
- Loading branch information
1 parent
4573f76
commit 7cdc30a
Showing
48 changed files
with
2,588 additions
and
555 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
use rustls_pki_types::CertificateDer; | ||
use webpki::TrustAnchor; | ||
|
||
/// Machinery for Sigstore end entity certificate verification. | ||
struct CertificateVerificationContext<'a> { | ||
pub trust_anchors: Vec<TrustAnchor<'a>>, | ||
pub intermediate_certs: Vec<CertificateDer<'a>>, | ||
} | ||
|
||
impl CertificateVerificationContext<'_> { | ||
pub fn new() {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.