-
Notifications
You must be signed in to change notification settings - Fork 151
Generate dummy mlkem bindings if mlkem.h is missing #471
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
Open
kornelski
wants to merge
4
commits into
master
Choose a base branch
from
dummy-mlkem
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+270
−84
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
3b77f5d
Add missing error handling in ML-KEM generate
kornelski 7a093bc
Avoid large-ish stack copies in encapsulate()
kornelski 60c5ea6
Ensure we don't leave unit memory if generate_key fails
kornelski fb69e23
Generate dummy placeholder for missing mlkem.h
kornelski File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,184 @@ | ||
| #![allow(unused, deprecated)] | ||
|
|
||
| use crate::ERR_put_error; | ||
| use crate::CBB; | ||
| use crate::CBS; | ||
| use crate::ERR_R_FATAL; | ||
|
|
||
| #[derive(Copy, Clone, Default)] | ||
| pub struct UnimplementedPlaceholder { | ||
| pub bytes: [u8; 0], | ||
| } | ||
|
|
||
| #[derive(Copy, Clone, Default)] | ||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub struct MLKEM768_private_key { | ||
| pub opaque: UnimplementedPlaceholder, | ||
| } | ||
|
|
||
| #[derive(Copy, Clone, Default)] | ||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub struct MLKEM768_public_key; | ||
| #[derive(Copy, Clone, Default)] | ||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub struct MLKEM1024_private_key { | ||
| pub opaque: UnimplementedPlaceholder, | ||
| } | ||
| #[derive(Copy, Clone, Default)] | ||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub struct MLKEM1024_public_key; | ||
|
|
||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub const MLKEM_SEED_BYTES: u32 = 0; | ||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub const MLKEM_SHARED_SECRET_BYTES: u32 = 0; | ||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub const MLKEM768_PUBLIC_KEY_BYTES: u32 = 0; | ||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub const MLKEM1024_PUBLIC_KEY_BYTES: u32 = 0; | ||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub const MLKEM768_CIPHERTEXT_BYTES: u32 = 0; | ||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub const MLKEM1024_CIPHERTEXT_BYTES: u32 = 0; | ||
|
|
||
| fn put_error() { | ||
| unsafe { | ||
| ERR_put_error( | ||
| 34, | ||
| 0, | ||
| ERR_R_FATAL, | ||
| c"boring-sys missing mlkem.h".as_ptr(), | ||
| 1, | ||
| ) | ||
| } | ||
| } | ||
|
|
||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub unsafe extern "C-unwind" fn MLKEM1024_generate_key( | ||
| _out_encoded_public_key: *mut u8, | ||
| _optional_out_seed: *mut u8, | ||
| _out_private_key: *mut MLKEM1024_private_key, | ||
| ) { | ||
| unimplemented!(); | ||
| } | ||
|
|
||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub unsafe extern "C" fn MLKEM1024_private_key_from_seed( | ||
| _out_private_key: *mut MLKEM1024_private_key, | ||
| _seed: *const u8, | ||
| _seed_len: usize, | ||
| ) -> ::std::os::raw::c_int { | ||
| put_error(); | ||
| 0 | ||
| } | ||
|
|
||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub unsafe extern "C-unwind" fn MLKEM1024_public_from_private( | ||
| _out_public_key: *mut MLKEM1024_public_key, | ||
| _private_key: *const MLKEM1024_private_key, | ||
| ) { | ||
| unimplemented!(); | ||
| } | ||
|
|
||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub unsafe extern "C-unwind" fn MLKEM1024_encap( | ||
| _out_ciphertext: *mut u8, | ||
| _out_shared_secret: *mut u8, | ||
| _public_key: *const MLKEM1024_public_key, | ||
| ) { | ||
| unimplemented!(); | ||
| } | ||
|
|
||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub unsafe extern "C" fn MLKEM1024_decap( | ||
| _out_shared_secret: *mut u8, | ||
| _ciphertext: *const u8, | ||
| _ciphertext_len: usize, | ||
| _private_key: *const MLKEM1024_private_key, | ||
| ) -> ::std::os::raw::c_int { | ||
| put_error(); | ||
| 0 | ||
| } | ||
|
|
||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub unsafe extern "C-unwind" fn MLKEM768_generate_key( | ||
| _out_encoded_public_key: *mut u8, | ||
| _optional_out_seed: *mut u8, | ||
| _out_private_key: *mut MLKEM768_private_key, | ||
| ) { | ||
| unimplemented!(); | ||
| } | ||
|
|
||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub unsafe extern "C" fn MLKEM768_private_key_from_seed( | ||
| _out_private_key: *mut MLKEM768_private_key, | ||
| _seed: *const u8, | ||
| _seed_len: usize, | ||
| ) -> ::std::os::raw::c_int { | ||
| put_error(); | ||
| 0 | ||
| } | ||
|
|
||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub unsafe extern "C-unwind" fn MLKEM768_public_from_private( | ||
| _out_public_key: *mut MLKEM768_public_key, | ||
| _private_key: *const MLKEM768_private_key, | ||
| ) { | ||
| unimplemented!(); | ||
| } | ||
|
|
||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub unsafe extern "C-unwind" fn MLKEM768_encap( | ||
| _out_ciphertext: *mut u8, | ||
| _out_shared_secret: *mut u8, | ||
| _public_key: *const MLKEM768_public_key, | ||
| ) { | ||
| unimplemented!(); | ||
| } | ||
|
|
||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub unsafe extern "C" fn MLKEM768_decap( | ||
| _out_shared_secret: *mut u8, | ||
| _ciphertext: *const u8, | ||
| _ciphertext_len: usize, | ||
| _private_key: *const MLKEM768_private_key, | ||
| ) -> ::std::os::raw::c_int { | ||
| put_error(); | ||
| 0 | ||
| } | ||
|
|
||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub unsafe extern "C" fn MLKEM768_marshal_public_key( | ||
| out: *mut CBB, | ||
| public_key: *const MLKEM768_public_key, | ||
| ) -> ::std::os::raw::c_int { | ||
| put_error(); | ||
| 0 | ||
| } | ||
|
|
||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub unsafe extern "C" fn MLKEM768_parse_public_key( | ||
| out_public_key: *mut MLKEM768_public_key, | ||
| in_: *mut CBS, | ||
| ) -> ::std::os::raw::c_int { | ||
| put_error(); | ||
| 0 | ||
| } | ||
|
|
||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub unsafe extern "C" fn MLKEM1024_marshal_public_key( | ||
| out: *mut CBB, | ||
| public_key: *const MLKEM1024_public_key, | ||
| ) -> ::std::os::raw::c_int { | ||
| put_error(); | ||
| 0 | ||
| } | ||
|
|
||
| #[deprecated(note = "mlkem.h was missing; this API won't work")] | ||
| pub unsafe extern "C" fn MLKEM1024_parse_public_key( | ||
| out_public_key: *mut MLKEM1024_public_key, | ||
| in_: *mut CBS, | ||
| ) -> ::std::os::raw::c_int { | ||
| put_error(); | ||
| 0 | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 only records an error, right? Doesn't halt the execution.
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.
Yeah. I've renamed it to just
put_error.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.
Shouldn't we panic and halt execution to prevent the thing you worried about?