Add ECC key implementation

This commit is contained in:
Alex Stokes
2019-08-23 16:54:16 +02:00
parent 91e11f3ec0
commit 3c97a5a0ed
2 changed files with 56 additions and 0 deletions

View File

@ -11,6 +11,7 @@ class KeyType(Enum):
Ed25519 = 1
Secp256k1 = 2
ECDSA = 3
ECC_P256 = 4
class Key(ABC):