[#3] Added generate proto script create container method
Signed-off-by: Ilyas Niyazov <i.niyazov@yadro.com>
This commit is contained in:
parent
19282f13cc
commit
297e107b10
52 changed files with 1380 additions and 74 deletions
8
frostfs_sdk/client/models/ecdsa_model.py
Normal file
8
frostfs_sdk/client/models/ecdsa_model.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
from frostfs_sdk.cryptography.key_extension import KeyExtension
|
||||
|
||||
|
||||
class ECDSA:
|
||||
def __init__(self, wif: str):
|
||||
self.wif = wif
|
||||
self.private_key: bytes = KeyExtension().get_private_key_from_wif(wif)
|
||||
self.public_key: bytes = KeyExtension().get_public_key(self.private_key)
|
Loading…
Add table
Add a link
Reference in a new issue