Exemplo n.º 1
0
 def sign(self, msg_hash, grind=True):
     sig = Signature(secp256k1.ecdsa_sign(msg_hash, self._secret))
     if grind:
         counter = 1
         while len(sig.serialize()) > 70:
             sig = Signature(secp256k1.ecdsa_sign(msg_hash, self._secret, None, counter.to_bytes(32, 'little')))
             counter += 1
             # just in case we get in infinite loop for some reason
             if counter > 200:
                 break
     return sig
Exemplo n.º 2
0
def secp256k1_example():
    """Usage example for secp256k1 usermodule"""

    # randomize context from time to time
    # - it helps against sidechannel attacks
    # secp256k1.context_randomize(os.urandom(32))

    # some random secret key
    secret = hashlib.sha256(b"secret key").digest()

    print("Secret key:", hexlify(secret).decode())

    # Makes sense to check if secret key is valid.
    # It will be ok in most cases, only if secret > N it will be invalid
    if not secp256k1.ec_seckey_verify(secret):
        raise ValueError("Secret key is invalid")

    # computing corresponding pubkey
    pubkey = secp256k1.ec_pubkey_create(secret)

    # serialize the pubkey in compressed format
    sec = secp256k1.ec_pubkey_serialize(pubkey, secp256k1.EC_COMPRESSED)
    print("Public key:", hexlify(sec).decode())

    # this is how you parse the pubkey
    pubkey = secp256k1.ec_pubkey_parse(sec)

    # Signature generation:

    # hash of the string "hello"
    msg = hashlib.sha256(b"hello").digest()
    # signing
    sig = secp256k1.ecdsa_sign(msg, secret)

    # serialization
    der = secp256k1.ecdsa_signature_serialize_der(sig)

    print("Signature:", hexlify(der).decode())

    # verification
    if secp256k1.ecdsa_verify(sig, msg, pubkey):
        print("Signature is valid")
    else:
        printf("Invalid signature")
Exemplo n.º 3
0
 def sign(self, msg_hash: bytes) -> Signature:
     return Signature(secp256k1.ecdsa_sign(msg_hash, self._secret))
Exemplo n.º 4
0
 def sign(self, msg_hash):
     return Signature(secp256k1.ecdsa_sign(msg_hash, self._secret))