File tree Expand file tree Collapse file tree 6 files changed +13
-7
lines changed Expand file tree Collapse file tree 6 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 1
- #!/usr/bin/env python
1
+ #!/usr/bin/env python3
2
2
"""Conformance client for python-tuf, part of tuf-conformance"""
3
3
4
4
# Copyright 2024 tuf-conformance contributors
Original file line number Diff line number Diff line change 1
- #!/usr/bin/env python
1
+ #!/usr/bin/env python3
2
2
"""TUF Client Example"""
3
3
4
4
# Copyright 2012 - 2017, New York University and the TUF contributors
Original file line number Diff line number Diff line change 1
- #!/usr/bin/env python
1
+ #!/usr/bin/env python3
2
2
# Copyright 2021-2022 python-tuf contributors
3
3
# SPDX-License-Identifier: MIT OR Apache-2.0
4
4
Original file line number Diff line number Diff line change 1
- #!/usr/bin/env python
1
+ #!/usr/bin/env python3
2
2
# Copyright 2021-2022 python-tuf contributors
3
3
# SPDX-License-Identifier: MIT OR Apache-2.0
4
4
Original file line number Diff line number Diff line change 1
- #!/usr/bin/env python
1
+ #!/usr/bin/env python3
2
2
3
3
# Copyright 2012 - 2017, New York University and the TUF contributors
4
4
# SPDX-License-Identifier: MIT OR Apache-2.0
Original file line number Diff line number Diff line change 1
1
# Copyright New York University and the TUF contributors
2
2
# SPDX-License-Identifier: MIT OR Apache-2.0
3
3
4
- """JSON de/serialization code."""
5
-
4
+ """``tuf.api.serialization.json`` module provides concrete implementations to
5
+ serialize and deserialize TUF role metadata to and from the JSON wireline
6
+ format for transportation, and to serialize the 'signed' part of TUF role
7
+ metadata to the OLPC Canonical JSON format for signature generation and
8
+ verification.
9
+ """
10
+
11
+ # We should not have shadowed stdlib json but that milk spilled already
6
12
# ruff: noqa: A005
7
13
8
14
from __future__ import annotations
You can’t perform that action at this time.
0 commit comments