C# Class Secp256k1.VarIntExtensions

Mostrar archivo Open project: TangibleCryptography/Secp256k1

Public Methods

Method Description
GetVarIntBytes ( this value ) : byte[]

Returns a VarInt as a variable length byte array representing the unsigned byte (uint8_t). VarInt is a Bitcoin Protocol specific structure used for efficient transmission of integrals over the wire. https://en.bitcoin.it/wiki/Protocol_specification#Variable_length_string

Method Details

GetVarIntBytes() public static method

Returns a VarInt as a variable length byte array representing the unsigned byte (uint8_t). VarInt is a Bitcoin Protocol specific structure used for efficient transmission of integrals over the wire. https://en.bitcoin.it/wiki/Protocol_specification#Variable_length_string
public static GetVarIntBytes ( this value ) : byte[]
value this byte on which the extension method is called
return byte[]