Skip to main content

ISecp256k1PublicKey

Namespace: IotaSdk

A secp256k1 public key.

BCS

The BCS serialized form for this type is defined by the following ABNF:

secp256k1-public-key = 33OCTET
public interface ISecp256k1PublicKey : System.IEquatable`1[[IotaSdk.Secp256k1PublicKey, IotaSdk, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]

Implements IEquatable<Secp256k1PublicKey>
Attributes NullableContextAttribute

Methods

DeriveAddress()

Derive an Address from this Public Key

An Address can be derived from a Secp256k1PublicKey by hashing the bytes of the public key prefixed with the Secp256k1 SignatureScheme flag (0x01).

hash( 0x01 || 33-byte secp256k1 public key)

Address DeriveAddress()

Returns

Address

Scheme()

Returns the signature scheme for this public key.

SignatureScheme Scheme()

Returns

SignatureScheme

ToBytes()

Byte[] ToBytes()

Returns

Byte[]

ToFlaggedBytes()

Returns the bytes with signature scheme flag prepended.

Byte[] ToFlaggedBytes()

Returns

Byte[]