[#2] Add methods sign and verify

Signed-off-by: ilyas585 <niyazov2023@gmail.com>
This commit is contained in:
ilyas585 2025-02-12 09:36:03 +03:00
parent 4433fc425a
commit a51ef880fe
9 changed files with 225 additions and 15 deletions

View file

@ -1,20 +1,8 @@
import pytest
from frostfs_api.crypto.key_extension import KeyExtension
from frostfs_api.client.verifier import Verifier
from frostfs_api.client.signer import Signer
from tests.helpers.models import ClientCryptograpy
@pytest.fixture(scope="session")
def client_key_extension():
return KeyExtension()
@pytest.fixture(scope="session")
def client_signer():
return Signer()
@pytest.fixture(scope="session")
def client_verifier():
return Verifier()
def client_cryptography():
return ClientCryptograpy()