Skip to content

Commit 2fa53ac

Browse files
committed
Merge branch '17-remove-apache-license-header' into 'master'
Resolve "Remove apache license header" Closes #17 See merge request internal/development-environment/ts-tvl!10
2 parents 24611aa + 81dd26a commit 2fa53ac

File tree

120 files changed

+3
-356
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+3
-356
lines changed

examples/example_01_get_info_request.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
#!/usr/bin/env python3
22

3-
# Copyright 2023 TropicSquare
4-
# SPDX-License-Identifier: Apache-2.0
5-
63
# ######################################################################################
74
# This test sends a GetInfo request to the Tropic01Model and prints the response.
85
# ######################################################################################

examples/example_02_secure_channel.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
#!/usr/bin/env python3
22

3-
# Copyright 2023 TropicSquare
4-
# SPDX-License-Identifier: Apache-2.0
5-
63
# ######################################################################################
74
# This test establish a secure channel between the Tropic01Model and the Host.
85
# ######################################################################################

examples/example_03_secure_channel_raw_messages.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
#!/usr/bin/env python3
22

3-
# Copyright 2023 TropicSquare
4-
# SPDX-License-Identifier: Apache-2.0
5-
63
# ######################################################################################
74
# This test establish a secure channel between the Tropic01Model and the Host.
85
# The messages are created manually, i.e. without the classes offered by the TVL.

examples/generate_configuration.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
#!/usr/bin/env python3
22

3-
# Copyright 2023 TropicSquare
4-
# SPDX-License-Identifier: Apache-2.0
5-
63
from argparse import ArgumentParser
74
from pathlib import Path
85
from random import randrange

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "tvl"
33
version = "0.10.1"
44
description = "TROPIC Verification Library"
55
authors = ["hlhote <[email protected]>"]
6-
license = "Apache-2.0"
6+
license = "BSD-3-Clause-Clear"
77
readme = "README.md"
88

99
[tool.poetry.dependencies]

tests/conftest.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
# Copyright 2023 TropicSquare
2-
# SPDX-License-Identifier: Apache-2.0
3-
4-
51
from tvl.constants import L2IdFieldEnum, L2StatusEnum, L3ResultFieldEnum
62
from tvl.messages.message import BaseMessage
73

tests/test_crypto/test_ecdsa.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# Copyright 2023 TropicSquare
2-
# SPDX-License-Identifier: Apache-2.0
3-
41
from binascii import unhexlify as _u
52
from hashlib import sha256 as _sha256
63
from typing import NamedTuple

tests/test_crypto/test_eddsa/test_eddsa.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# Copyright 2023 TropicSquare
2-
# SPDX-License-Identifier: Apache-2.0
3-
41
import random
52
from binascii import unhexlify as _u
63
from hashlib import sha512

tests/test_crypto/test_keccak/test_keccak.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# Copyright 2023 TropicSquare
2-
# SPDX-License-Identifier: Apache-2.0
3-
41
import os
52
import random
63
from binascii import unhexlify

tests/test_crypto/test_kmac.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# Copyright 2023 TropicSquare
2-
# SPDX-License-Identifier: Apache-2.0
3-
41
import os
52
import random
63
from typing import Tuple

0 commit comments

Comments
 (0)