Skip to content

Commit

Permalink
core/pta/remote_attestation: add license information
Browse files Browse the repository at this point in the history
This commit adds the SPDX license identifier and copyright notice to the
files in core/pta/remote_attestation. The license used is BSD-2-Clause,
and the copyright is attributed  to the Institute of Information Security
(IISEC).

Signed-off-by: Yuichi Sugiyama <[email protected]>
  • Loading branch information
mmxsrup committed Oct 9, 2024
1 parent 6b0a604 commit 3fbe614
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/pta/remote_attestation/cbor.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// SPDX-License-Identifier: BSD-2-Clause
/*
* Copyright (C) 2024, Insitite of Information Security (IISEC)
*/

#include "cbor.h"
#include "sign.h"
#include <kernel/pseudo_ta.h>
Expand Down
5 changes: 5 additions & 0 deletions core/pta/remote_attestation/cbor.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// SPDX-License-Identifier: BSD-2-Clause
/*
* Copyright (C) 2024, Insitite of Information Security (IISEC)
*/

#ifndef PTA_REMOTE_ATTESTATION_TA_CBOR_H
#define PTA_REMOTE_ATTESTATION_TA_CBOR_H

Expand Down
5 changes: 5 additions & 0 deletions core/pta/remote_attestation/hash.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// SPDX-License-Identifier: BSD-2-Clause
/*
* Copyright (C) 2024, Insitite of Information Security (IISEC)
*/

#include <crypto/crypto.h>
#include <kernel/user_mode_ctx.h>

Expand Down
5 changes: 5 additions & 0 deletions core/pta/remote_attestation/hash.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// SPDX-License-Identifier: BSD-2-Clause
/*
* Copyright (C) 2024, Insitite of Information Security (IISEC)
*/

#ifndef PTA_REMOTE_ATTESTATION_TA_HASH_H
#define PTA_REMOTE_ATTESTATION_TA_HASH_H

Expand Down
5 changes: 5 additions & 0 deletions core/pta/remote_attestation/remote_attestation.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// SPDX-License-Identifier: BSD-2-Clause
/*
* Copyright (C) 2024, Insitite of Information Security (IISEC)
*/

#include <kernel/pseudo_ta.h>
#include <pta_remote_attestation.h>

Expand Down
5 changes: 5 additions & 0 deletions core/pta/remote_attestation/sign.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// SPDX-License-Identifier: BSD-2-Clause
/*
* Copyright (C) 2024, Insitite of Information Security (IISEC)
*/

#include "sign.h"
#include <crypto/crypto.h>
#include <crypto/crypto_impl.h>
Expand Down
5 changes: 5 additions & 0 deletions core/pta/remote_attestation/sign.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// SPDX-License-Identifier: BSD-2-Clause
/*
* Copyright (C) 2024, Insitite of Information Security (IISEC)
*/

#ifndef PTA_REMOTE_ATTESTATION_SIGN_H
#define PTA_REMOTE_ATTESTATION_SIGN_H

Expand Down

0 comments on commit 3fbe614

Please sign in to comment.