Keys and signatures
Keys
On Tezos, each tz address is determined by hashing a public key. Public keys are of type sp.key
and can be defined with sp.key()
. For example, sp.key("edpkv3w95AcgCWQeoYm5szaEqXX71JkZ261s4wjH1NYRtibX879rDv")
Signatures
Keys can be used to sign data off-chain. For more details on this process, see cryptography. The type sp.signature
represents a digital signature.
- sp.check_signature(key: sp.key, signature: sp.signature, message: sp.bytes) → sp.bool
Determine whether the signature
signature
has been produced by signingmessage
with the private key corresponding to the public keykey
.TIP
message
is often built by packing a packable value. For example,message=sp.pack(sp.record(x=42))
Key hashes
The type sp.key_hash
represents the hash of a public key. It can be defined with sp.key_hash()
. For example, sp.key_hash("tz1h4EsGunH2Ue1T2uNs8mfKZ8XZoQji3HcK")
. Key hashes are similar to tz addresses and only differ by their type.