File: System\Security\Cryptography\Cose\KnownHeaders.cs | Web Access |
Project: src\src\libraries\System.Security.Cryptography.Cose\src\System.Security.Cryptography.Cose.csproj (System.Security.Cryptography.Cose) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Security.Cryptography.Cose { // https://datatracker.ietf.org/doc/html/rfc8152#section-3.1 Table 2. internal static class KnownHeaders { internal const int Alg = 1; internal const int Crit = 2; internal const int ContentType = 3; internal const int Kid = 4; } } |