<PackageReference Include="System.Security.Permissions" Version="10.0.0-preview.6.25358.103" />

StrongNamePublicKeyBlob

public sealed class StrongNamePublicKeyBlob
Represents the public key information (called a blob) for a strong name. This class cannot be inherited.
namespace System.Security.Permissions { [Obsolete("Code Access Security is not supported or honored by the runtime.", DiagnosticId = "SYSLIB0003", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")] public sealed class StrongNamePublicKeyBlob { public StrongNamePublicKeyBlob(byte[] publicKey) { } public override bool Equals(object o) { return base.Equals(o); } public override int GetHashCode() { return base.GetHashCode(); } public override string ToString() { return base.ToString(); } } }