Show / Hide Table of Contents

    Class MultisigSubsig

    Serializable multisig sub-signature

    Inheritance
    System.Object
    MultisigSubsig
    Inherited Members
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: Algorand
    Assembly: Algorand.dll
    Syntax
    [JsonObject]
    public class MultisigSubsig

    Constructors

    | Improve this Doc View Source

    MultisigSubsig(Ed25519PublicKeyParameters, Signature)

    Declaration
    public MultisigSubsig(Ed25519PublicKeyParameters key, Signature sig = null)
    Parameters
    Type Name Description
    Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters key
    Signature sig
    | Improve this Doc View Source

    MultisigSubsig(Byte[], Byte[])

    workaround wrapped json values

    Declaration
    [JsonConstructor]
    public MultisigSubsig([JsonProperty("pk")] byte[] key = null, [JsonProperty("s")] byte[] sig = null)
    Parameters
    Type Name Description
    System.Byte[] key
    System.Byte[] sig

    Fields

    | Improve this Doc View Source

    key

    Declaration
    [JsonProperty(PropertyName = "pk")]
    public Ed25519PublicKeyParameters key
    Field Value
    Type Description
    Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters
    | Improve this Doc View Source

    sig

    Declaration
    [JsonProperty(PropertyName = "s")]
    public Signature sig
    Field Value
    Type Description
    Signature

    Methods

    | Improve this Doc View Source

    Equals(Object)

    Declaration
    public override bool Equals(object obj)
    Parameters
    Type Name Description
    System.Object obj
    Returns
    Type Description
    System.Boolean
    Overrides
    System.Object.Equals(System.Object)
    | Improve this Doc View Source

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    System.Int32
    Overrides
    System.Object.GetHashCode()
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX