Skip to content

Commit a171cd6

Browse files
committed
chore: add MIT license SPDX header to all source files
1 parent 4e33056 commit a171cd6

File tree

14 files changed

+14
-10
lines changed

14 files changed

+14
-10
lines changed

client/src/attestation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier:
1+
// SPDX-License-Identifier: MIT
22

33
//! Nitro Enclaves attestation document verification.
44

client/src/crypto.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier:
1+
// SPDX-License-Identifier: MIT
22

33
use anyhow::{Result, anyhow};
44
use aws_lc_rs::rand::SecureRandom;

client/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier:
1+
// SPDX-License-Identifier: MIT
22

33
use anyhow::{Result, anyhow};
44
use p256::elliptic_curve::rand_core::OsRng;

client/src/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier:
1+
// SPDX-License-Identifier: MIT
22

33
use anyhow::Result;
44
use serde::{Deserialize, Serialize};

enclave/src/crypto.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier:
1+
// SPDX-License-Identifier: MIT
22

33
//! Cryptographic helpers for the enclave protocol.
44

enclave/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier:
1+
// SPDX-License-Identifier: MIT
22

33
//! This module provides a handler for the vsock connection with the parent VM.
44

enclave/src/nsm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier:
1+
// SPDX-License-Identifier: MIT
22

33
//! This module provides wrapper functions to request operations from the Nitro Secure Module (NSM) driver.
44

enclave/src/session.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier:
1+
// SPDX-License-Identifier: MIT
22

33
//! Session management for the enclave protocol.
44

enclave/src/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier:
1+
// SPDX-License-Identifier: MIT
22

33
//! This module provides public types.
44

proxy/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier:
1+
// SPDX-License-Identifier: MIT
22

33
//! HTTP -> vsock proxy (untrusted). Forwards request body bytes to the enclave vsock server and returns response bytes.
44

0 commit comments

Comments
 (0)