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 SourceMultisigSubsig(Ed25519PublicKeyParameters, Signature)
Declaration
public MultisigSubsig(Ed25519PublicKeyParameters key, Signature sig = null)
Parameters
Type | Name | Description |
---|---|---|
Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters | key | |
Signature | sig |
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 Sourcekey
Declaration
[JsonProperty(PropertyName = "pk")]
public Ed25519PublicKeyParameters key
Field Value
Type | Description |
---|---|
Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters |
sig
Declaration
[JsonProperty(PropertyName = "s")]
public Signature sig
Field Value
Type | Description |
---|---|
Signature |
Methods
| Improve this Doc View SourceEquals(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()