2018-09-17 22:13:30 +02:00
|
|
|
import ecdsa
|
|
|
|
import hashlib
|
|
|
|
import binascii
|
2018-09-17 22:31:44 +02:00
|
|
|
from lbrynet.schema.address import decode_address
|
|
|
|
from lbrynet.schema.encoding import decode_b64_fields
|
|
|
|
from lbrynet.schema.schema.certificate import Certificate
|
|
|
|
from lbrynet.schema.schema.claim import Claim
|
2019-01-05 10:02:43 +01:00
|
|
|
from lbrynet.schema.signature import Signature, NAMED_SECP256K1
|
2018-09-17 22:31:44 +02:00
|
|
|
from lbrynet.schema.validator import validate_claim_id
|
|
|
|
from lbrynet.schema.schema import V_0_0_1, CLAIM_TYPE, CLAIM_TYPES, CERTIFICATE_TYPE, VERSION
|
|
|
|
from lbrynet.schema.schema import NIST256p, NIST384p, SECP256k1, SHA256, SHA384
|
2018-09-17 22:13:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
class NIST_ECDSASigner(object):
|
|
|
|
CURVE = None
|
|
|
|
CURVE_NAME = None
|
|
|
|
HASHFUNC = hashlib.sha256
|
|
|
|
HASHFUNC_NAME = SHA256
|
|
|
|
|
|
|
|
def __init__(self, private_key):
|
|
|
|
self._private_key = private_key
|
|
|
|
|
|
|
|
@property
|
|
|
|
def private_key(self):
|
|
|
|
return self._private_key
|
|
|
|
|
|
|
|
@property
|
|
|
|
def public_key(self):
|
|
|
|
return self.private_key.get_verifying_key()
|
|
|
|
|
|
|
|
@property
|
|
|
|
def certificate(self):
|
|
|
|
certificate_claim = {
|
|
|
|
VERSION: V_0_0_1,
|
|
|
|
CLAIM_TYPE: CERTIFICATE_TYPE,
|
|
|
|
CLAIM_TYPES[CERTIFICATE_TYPE]: Certificate.load_from_key_obj(self.public_key,
|
|
|
|
self.CURVE_NAME)
|
|
|
|
}
|
|
|
|
return Claim.load(certificate_claim)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def load_pem(cls, pem_string):
|
|
|
|
return cls(ecdsa.SigningKey.from_pem(pem_string, hashfunc=cls.HASHFUNC_NAME))
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def generate(cls):
|
|
|
|
return cls(ecdsa.SigningKey.generate(curve=cls.CURVE, hashfunc=cls.HASHFUNC_NAME))
|
|
|
|
|
2019-01-09 16:18:52 +01:00
|
|
|
def sign(self, *fields):
|
|
|
|
digest = self.HASHFUNC(bytearray(b''.join(fields))).digest()
|
|
|
|
return self.private_key.sign_digest_deterministic(digest, hashfunc=self.HASHFUNC)
|
2018-12-31 01:23:03 +01:00
|
|
|
|
2019-01-09 16:18:52 +01:00
|
|
|
def sign_stream_claim(self, claim, claim_address, cert_claim_id, name, detached=False):
|
2018-09-17 22:13:30 +02:00
|
|
|
validate_claim_id(cert_claim_id)
|
2018-12-31 01:23:03 +01:00
|
|
|
raw_cert_id = binascii.unhexlify(cert_claim_id)
|
2018-09-17 22:13:30 +02:00
|
|
|
decoded_addr = decode_address(claim_address)
|
2019-01-09 16:18:52 +01:00
|
|
|
if detached:
|
|
|
|
assert name, "Name is required for detached signatures"
|
|
|
|
assert self.CURVE_NAME == SECP256k1, f"Only SECP256k1 is supported, not: {self.CURVE_NAME}"
|
|
|
|
signature = self.sign(
|
|
|
|
name.lower().encode(),
|
|
|
|
decoded_addr,
|
|
|
|
claim.serialized_no_signature,
|
|
|
|
raw_cert_id,
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
signature = self.sign(decoded_addr, claim.serialized_no_signature, raw_cert_id)
|
2018-09-17 22:13:30 +02:00
|
|
|
|
2019-01-04 20:06:18 +01:00
|
|
|
if detached:
|
2019-01-05 10:02:43 +01:00
|
|
|
return Claim.load(decode_b64_fields(claim.protobuf_dict)), Signature(NAMED_SECP256K1(
|
2019-01-09 16:18:52 +01:00
|
|
|
signature,
|
2019-01-05 10:02:43 +01:00
|
|
|
raw_cert_id,
|
|
|
|
claim.serialized_no_signature
|
|
|
|
))
|
2019-01-04 20:06:18 +01:00
|
|
|
# -- Legacy signer (signature inside protobuf) --
|
2018-09-17 22:13:30 +02:00
|
|
|
|
|
|
|
if not isinstance(self.private_key, ecdsa.SigningKey):
|
|
|
|
raise Exception("Not given a signing key")
|
|
|
|
sig_dict = {
|
|
|
|
"version": V_0_0_1,
|
|
|
|
"signatureType": self.CURVE_NAME,
|
2019-01-09 16:18:52 +01:00
|
|
|
"signature": signature,
|
2018-12-31 01:23:03 +01:00
|
|
|
"certificateId": raw_cert_id
|
2018-09-17 22:13:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
msg = {
|
|
|
|
"version": V_0_0_1,
|
|
|
|
"stream": decode_b64_fields(claim.protobuf_dict)['stream'],
|
|
|
|
"publisherSignature": sig_dict
|
|
|
|
}
|
|
|
|
|
2019-01-05 10:02:43 +01:00
|
|
|
proto = Claim.load(msg)
|
|
|
|
return proto, Signature.flagged_parse(proto.SerializeToString())
|
2018-12-15 07:24:53 +01:00
|
|
|
|
2018-09-17 22:13:30 +02:00
|
|
|
|
|
|
|
class NIST256pSigner(NIST_ECDSASigner):
|
|
|
|
CURVE = ecdsa.NIST256p
|
|
|
|
CURVE_NAME = NIST256p
|
|
|
|
|
|
|
|
|
|
|
|
class NIST384pSigner(NIST_ECDSASigner):
|
|
|
|
CURVE = ecdsa.NIST384p
|
|
|
|
CURVE_NAME = NIST384p
|
|
|
|
HASHFUNC = hashlib.sha384
|
|
|
|
HASHFUNC_NAME = SHA384
|
|
|
|
|
|
|
|
|
|
|
|
class SECP256k1Signer(NIST_ECDSASigner):
|
|
|
|
CURVE = ecdsa.SECP256k1
|
|
|
|
CURVE_NAME = SECP256k1
|
|
|
|
|
|
|
|
|
|
|
|
def get_signer(curve):
|
|
|
|
if curve == NIST256p:
|
|
|
|
return NIST256pSigner
|
|
|
|
elif curve == NIST384p:
|
|
|
|
return NIST384pSigner
|
|
|
|
elif curve == SECP256k1:
|
|
|
|
return SECP256k1Signer
|
|
|
|
else:
|
|
|
|
raise Exception("Unknown curve: %s" % str(curve))
|