Table of Contents

Class AxolotlPackageSignature

Namespace
Axolotl2D.Packages
Assembly
Axolotl2D.dll

Describes the detached signature trailer of a package.

public sealed record AxolotlPackageSignature : IEquatable<AxolotlPackageSignature>
Inheritance
AxolotlPackageSignature
Implements
Inherited Members

Constructors

AxolotlPackageSignature(string, ushort, long, byte[])

Describes the detached signature trailer of a package.

public AxolotlPackageSignature(string SignerId, ushort Algorithm, long SignedLength, byte[] Value)

Parameters

SignerId string

The logical signer.

Algorithm ushort

The format algorithm ID.

SignedLength long

The number of signed bytes.

Value byte[]

The signature bytes.

Properties

Algorithm

The format algorithm ID.

public ushort Algorithm { get; init; }

Property Value

ushort

SignedLength

The number of signed bytes.

public long SignedLength { get; init; }

Property Value

long

SignerId

The logical signer.

public string SignerId { get; init; }

Property Value

string

Value

The signature bytes.

public byte[] Value { get; init; }

Property Value

byte[]