Skip to content

chore: new mpl #1530

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

Merged
merged 3 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions DynamoDbEncryption/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ RUST_OTHER_FILES := \
runtimes/rust/src/hmac.rs \
runtimes/rust/src/kms.rs \
runtimes/rust/src/local_cmc.rs \
runtimes/rust/src/oslang.rs \
runtimes/rust/src/random.rs \
runtimes/rust/src/rsa.rs \
runtimes/rust/src/sets.rs \
Expand Down
1 change: 1 addition & 0 deletions DynamoDbEncryption/runtimes/rust/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ src/local_cmc.rs
src/operation
src/operation.rs
src/random.rs
src/oslang.rs
src/rsa.rs
src/sets.rs
src/standard_library_conversions.rs
Expand Down
1 change: 1 addition & 0 deletions DynamoDbEncryption/runtimes/rust/copy_externs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ cp $SRC/ecdsa.rs src
cp $SRC/hmac.rs src
cp $SRC/kms.rs src
cp $SRC/local_cmc.rs src
cp $SRC/oslang.rs src
cp $SRC/random.rs src
cp $SRC/rsa.rs src
cp $SRC/sets.rs src
Expand Down
1 change: 1 addition & 0 deletions DynamoDbEncryption/runtimes/rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ pub(crate) mod ecdsa;
pub(crate) mod hmac;
pub(crate) mod kms;
pub(crate) mod local_cmc;
pub(crate) mod oslang;
pub(crate) mod random;
pub(crate) mod rsa;
pub(crate) mod sets;
Expand Down
1 change: 1 addition & 0 deletions TestVectors/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ RUST_OTHER_FILES := \
runtimes/rust/src/hmac.rs \
runtimes/rust/src/kms.rs \
runtimes/rust/src/local_cmc.rs \
runtimes/rust/src/oslang.rs \
runtimes/rust/src/random.rs \
runtimes/rust/src/rsa.rs \
runtimes/rust/src/sets.rs \
Expand Down
1 change: 1 addition & 0 deletions TestVectors/runtimes/rust/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ src/local_cmc.rs
src/operation
src/operation.rs
src/random.rs
src/oslang.rs
src/rsa.rs
src/sets.rs
src/software_externs.rs
Expand Down
1 change: 1 addition & 0 deletions TestVectors/runtimes/rust/copy_externs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ cp $SRC/hmac.rs src
cp $SRC/kms.rs src
cp $SRC/local_cmc.rs src
cp $SRC/random.rs src
cp $SRC/oslang.rs src
cp $SRC/rsa.rs src
cp $SRC/sets.rs src
cp ../../../DynamoDbEncryption/runtimes/rust/src/software_externs.rs src
Expand Down
1 change: 1 addition & 0 deletions TestVectors/runtimes/rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ pub mod ecdsa;
pub mod hmac;
pub mod kms;
pub mod local_cmc;
pub mod oslang;
pub mod random;
pub mod rsa;
pub mod sets;
Expand Down
2 changes: 1 addition & 1 deletion submodules/MaterialProviders
Loading