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
22"""Conformance client for python-tuf, part of tuf-conformance"""
33
44# 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
22"""TUF Client Example"""
33
44# 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
22# Copyright 2021-2022 python-tuf contributors
33# SPDX-License-Identifier: MIT OR Apache-2.0
44
Original file line number Diff line number Diff line change 1- #!/usr/bin/env python
1+ #!/usr/bin/env python3
22# Copyright 2021-2022 python-tuf contributors
33# SPDX-License-Identifier: MIT OR Apache-2.0
44
Original file line number Diff line number Diff line change 1- #!/usr/bin/env python
1+ #!/usr/bin/env python3
22
33# Copyright 2012 - 2017, New York University and the TUF contributors
44# SPDX-License-Identifier: MIT OR Apache-2.0
Original file line number Diff line number Diff line change 11# Copyright New York University and the TUF contributors
22# SPDX-License-Identifier: MIT OR Apache-2.0
33
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
612# ruff: noqa: A005
713
814from __future__ import annotations
You can’t perform that action at this time.
0 commit comments