-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
validation: add CryptoOps trait (#9297)
* validation: add CryptoOps trait Signed-off-by: William Woodruff <[email protected]> * validation: rename: backend -> ops Signed-off-by: William Woodruff <[email protected]> --------- Signed-off-by: William Woodruff <[email protected]>
- Loading branch information
Showing
2 changed files
with
19 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ | |
|
||
#![forbid(unsafe_code)] | ||
|
||
pub mod ops; | ||
pub mod types; |
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,18 @@ | ||
// This file is dual licensed under the terms of the Apache License, Version | ||
// 2.0, and the BSD License. See the LICENSE file in the root of this repository | ||
// for complete details. | ||
|
||
use cryptography_x509::certificate::Certificate; | ||
|
||
pub trait CryptoOps { | ||
/// A public key type for this cryptographic backend. | ||
type Key; | ||
|
||
/// Extracts the public key from the given `Certificate` in | ||
/// a `Key` format known by the cryptographic backend. | ||
fn public_key(&self, cert: &Certificate) -> Self::Key; | ||
|
||
/// Verifies the signature on `Certificate` using the given | ||
/// `Key`. | ||
fn is_signed_by(&self, cert: &Certificate, key: Self::Key) -> bool; | ||
} |