Skip to content

Commit fe03425

Browse files
authored
chore: new mpl (#1530)
* chore: new mpl
1 parent e10fed9 commit fe03425

File tree

9 files changed

+9
-1
lines changed

9 files changed

+9
-1
lines changed

DynamoDbEncryption/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ RUST_OTHER_FILES := \
2929
runtimes/rust/src/hmac.rs \
3030
runtimes/rust/src/kms.rs \
3131
runtimes/rust/src/local_cmc.rs \
32+
runtimes/rust/src/oslang.rs \
3233
runtimes/rust/src/random.rs \
3334
runtimes/rust/src/rsa.rs \
3435
runtimes/rust/src/sets.rs \

DynamoDbEncryption/runtimes/rust/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ src/local_cmc.rs
2323
src/operation
2424
src/operation.rs
2525
src/random.rs
26+
src/oslang.rs
2627
src/rsa.rs
2728
src/sets.rs
2829
src/standard_library_conversions.rs

DynamoDbEncryption/runtimes/rust/copy_externs.sh

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ cp $SRC/ecdsa.rs src
1515
cp $SRC/hmac.rs src
1616
cp $SRC/kms.rs src
1717
cp $SRC/local_cmc.rs src
18+
cp $SRC/oslang.rs src
1819
cp $SRC/random.rs src
1920
cp $SRC/rsa.rs src
2021
cp $SRC/sets.rs src

DynamoDbEncryption/runtimes/rust/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ pub(crate) mod ecdsa;
142142
pub(crate) mod hmac;
143143
pub(crate) mod kms;
144144
pub(crate) mod local_cmc;
145+
pub(crate) mod oslang;
145146
pub(crate) mod random;
146147
pub(crate) mod rsa;
147148
pub(crate) mod sets;

TestVectors/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ RUST_OTHER_FILES := \
4242
runtimes/rust/src/hmac.rs \
4343
runtimes/rust/src/kms.rs \
4444
runtimes/rust/src/local_cmc.rs \
45+
runtimes/rust/src/oslang.rs \
4546
runtimes/rust/src/random.rs \
4647
runtimes/rust/src/rsa.rs \
4748
runtimes/rust/src/sets.rs \

TestVectors/runtimes/rust/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ src/local_cmc.rs
2424
src/operation
2525
src/operation.rs
2626
src/random.rs
27+
src/oslang.rs
2728
src/rsa.rs
2829
src/sets.rs
2930
src/software_externs.rs

TestVectors/runtimes/rust/copy_externs.sh

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ cp $SRC/hmac.rs src
1616
cp $SRC/kms.rs src
1717
cp $SRC/local_cmc.rs src
1818
cp $SRC/random.rs src
19+
cp $SRC/oslang.rs src
1920
cp $SRC/rsa.rs src
2021
cp $SRC/sets.rs src
2122
cp ../../../DynamoDbEncryption/runtimes/rust/src/software_externs.rs src

TestVectors/runtimes/rust/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ pub mod ecdsa;
5555
pub mod hmac;
5656
pub mod kms;
5757
pub mod local_cmc;
58+
pub mod oslang;
5859
pub mod random;
5960
pub mod rsa;
6061
pub mod sets;

0 commit comments

Comments
 (0)