Class AxolotlPackageSignature
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
SignerIdstringThe logical signer.
AlgorithmushortThe format algorithm ID.
SignedLengthlongThe number of signed bytes.
Valuebyte[]The signature bytes.
Properties
Algorithm
The format algorithm ID.
public ushort Algorithm { get; init; }
Property Value
SignedLength
The number of signed bytes.
public long SignedLength { get; init; }
Property Value
SignerId
The logical signer.
public string SignerId { get; init; }
Property Value
Value
The signature bytes.
public byte[] Value { get; init; }
Property Value
- byte[]