-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle Provisioning Certification Keys (PCKs) #1051
Changes from 29 commits
eb39792
664c1fc
96453a3
d5fffa5
1a7759c
d74f85a
e3ad7fb
f02c7c5
f70315c
2f86ec8
5741385
5cd50e4
32e0249
9b2384c
101c622
52c4236
6c4e549
030ac41
2f7aa2d
e069b64
e8f317c
0272c72
5058327
1daae2c
e6c5f08
fed5e20
84b4cfa
09bc7f2
19a0b08
47579ef
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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 |
---|---|---|
|
@@ -109,6 +109,10 @@ pub enum HashingAlgorithm { | |
/// A compressed, serialized [synedrion::ecdsa::VerifyingKey<k256::Secp256k1>] | ||
pub type EncodedVerifyingKey = [u8; VERIFICATION_KEY_LENGTH as usize]; | ||
|
||
#[cfg(not(feature = "wasm"))] | ||
pub type BoundedVecEncodedVerifyingKey = | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Im not sure I see this anywhere else There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's used in the |
||
sp_runtime::BoundedVec<u8, sp_runtime::traits::ConstU32<VERIFICATION_KEY_LENGTH>>; | ||
|
||
/// Input data to be included in a TDX attestation | ||
pub struct QuoteInputData(pub [u8; 64]); | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is now the PCK for the old TS account, even though the account ID has changed. I have made an issue for this: #1058