Skip to content

Commit

Permalink
Merge pull request #802 from lukpueh/rm-stability-disclaimers
Browse files Browse the repository at this point in the history
docs: Remove pre 1.0.0 disclaimers
  • Loading branch information
jku authored Apr 30, 2024
2 parents 195ae34 + 93b1dfa commit 402c898
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
5 changes: 2 additions & 3 deletions docs/signer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Signer API

.. currentmodule:: securesystemslib.signer

The signer module provides a simple and unified cryptographic signing and signature verification API designed to work consistently regardless of the underlying signing technology. This is achieved with abstract interfaces backed by multiple implementations:
The signer module provides a simple and unified cryptographic signing and signature verification API designed to work consistently regardless of the underlying signing technology. This is achieved with abstract interfaces backed by multiple implementations:

* ``Signer.sign``
* ``Key.verify_signature``
Expand Down Expand Up @@ -59,8 +59,7 @@ which may happen on different systems and at different points in time:

4. **Verify**, given a configured public key

.. warning::
The API is experimental and may change without warning in versions ``<1.0.0``.
.. note::

See `'New Signer API' <https://theupdateframework.github.io/python-tuf/2023/01/24/securesystemslib-signer-api.html>`_ blog post
for background infos.
Expand Down
3 changes: 0 additions & 3 deletions securesystemslib/dsse.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,6 @@ def sign(self, signer: Signer) -> Signature:
def verify(self, keys: List[Key], threshold: int) -> Dict[str, Key]:
"""Verify the payload with the provided Keys.
NOTE: This API is experimental and might change (see
secure-systems-lab/dsse#55)
Arguments:
keys: A list of public keys to verify the signatures.
threshold: Number of signatures needed to pass the verification.
Expand Down

0 comments on commit 402c898

Please sign in to comment.