KeyPair
TonSdk.Core.Crypto
KeyPair
is a class, that is used to work with keypairs (private and public keys).
KeyPair
can be created via using Mnemonic
class, for example:
Each KeyPair
class contains PrivateKey
and PublicKey
fields:
Each key is a 32 byte array.
With using KeyPair.Sign()
you can sign any data with specified PrivateKey
:
Last updated