1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-12 18:49:07 +00:00
trezor-firmware/mocks/trezor/crypto/curve/secp256k1.py

40 lines
1.2 KiB
Python
Raw Normal View History

2016-09-27 14:48:21 +00:00
2017-04-08 16:43:26 +00:00
# extmod/modtrezorcrypto/modtrezorcrypto-secp256k1.h
def generate_secret() -> bytes:
'''
Generate secret key.
'''
2017-04-08 16:43:26 +00:00
# extmod/modtrezorcrypto/modtrezorcrypto-secp256k1.h
2016-09-27 14:48:21 +00:00
def publickey(secret_key: bytes, compressed: bool=True) -> bytes:
'''
Computes public key from secret key.
'''
2017-04-08 16:43:26 +00:00
# extmod/modtrezorcrypto/modtrezorcrypto-secp256k1.h
def sign(secret_key: bytes, digest: bytes, compressed: bool=True) -> bytes:
2016-09-27 14:48:21 +00:00
'''
Uses secret key to produce the signature of the digest.
2016-09-27 14:48:21 +00:00
'''
2017-04-08 16:43:26 +00:00
# extmod/modtrezorcrypto/modtrezorcrypto-secp256k1.h
def verify(public_key: bytes, signature: bytes, digest: bytes) -> bool:
2016-09-27 14:48:21 +00:00
'''
Uses public key to verify the signature of the digest.
2016-09-27 14:48:21 +00:00
Returns True on success.
'''
2017-04-08 16:43:26 +00:00
# extmod/modtrezorcrypto/modtrezorcrypto-secp256k1.h
def verify_recover(signature: bytes, digest: bytes) -> bytes:
'''
Uses signature of the digest to verify the digest and recover the public key.
Returns public key on success, None on failure.
'''
# extmod/modtrezorcrypto/modtrezorcrypto-secp256k1.h
def multiply(secret_key: bytes, public_key: bytes) -> bytes:
'''
Multiplies point defined by public_key with scalar defined by secret_key
Useful for ECDH
'''