PHP 8.2.31
Preview: __init__.py Size: 1020 B
/proc/self/root/lib64/python3.6/site-packages/cryptography/hazmat/primitives/asymmetric/__init__.py

# This file is dual licensed under the terms of the Apache License, Version
# 2.0, and the BSD License. See the LICENSE file in the root of this repository
# for complete details.

from __future__ import absolute_import, division, print_function

import abc

import six


@six.add_metaclass(abc.ABCMeta)
class AsymmetricSignatureContext(object):
    @abc.abstractmethod
    def update(self, data):
        """
        Processes the provided bytes and returns nothing.
        """

    @abc.abstractmethod
    def finalize(self):
        """
        Returns the signature as bytes.
        """


@six.add_metaclass(abc.ABCMeta)
class AsymmetricVerificationContext(object):
    @abc.abstractmethod
    def update(self, data):
        """
        Processes the provided bytes and returns nothing.
        """

    @abc.abstractmethod
    def verify(self):
        """
        Raises an exception if the bytes provided to update do not match the
        signature or the signature does not match the public key.
        """

Directory Contents

Dirs: 1 × Files: 11

Name Size Perms Modified Actions
- drwxr-xr-x 2025-08-28 20:39:17
Edit Download
5.53 KB lrw-r--r-- 2020-10-28 03:11:40
Edit Download
7.01 KB lrw-r--r-- 2020-10-28 03:11:40
Edit Download
13.68 KB lrw-r--r-- 2020-10-28 03:11:40
Edit Download
2.27 KB lrw-r--r-- 2020-10-28 03:11:40
Edit Download
2.34 KB lrw-r--r-- 2020-10-28 03:11:40
Edit Download
2.20 KB lrw-r--r-- 2020-10-28 03:11:40
Edit Download
10.25 KB lrw-r--r-- 2020-10-28 03:11:40
Edit Download
1.33 KB lrw-r--r-- 2025-08-26 10:01:14
Edit Download
2.20 KB lrw-r--r-- 2020-10-28 03:11:40
Edit Download
2.22 KB lrw-r--r-- 2020-10-28 03:11:40
Edit Download
1020 B lrw-r--r-- 2020-10-28 03:11:40
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).