[#2] Add methods sign and verify
Signed-off-by: ilyas585 <niyazov2023@gmail.com>
This commit is contained in:
parent
4433fc425a
commit
a51ef880fe
9 changed files with 225 additions and 15 deletions
10
tests/helpers/models.py
Normal file
10
tests/helpers/models.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
from frostfs_api.cryptography.key_extension import KeyExtension
|
||||
from frostfs_api.cryptography.verifier import Verifier
|
||||
from frostfs_api.cryptography.signer import Signer
|
||||
|
||||
|
||||
class ClientCryptograpy:
|
||||
def __init__(self):
|
||||
self.key_extension = KeyExtension()
|
||||
self.signer = Signer()
|
||||
self.verifier = Verifier()
|
Loading…
Add table
Add a link
Reference in a new issue