File: src\runtime\src\libraries\Common\src\Interop\Windows\Crypt32\Interop.ErrorCode.cs
Web Access
Project: src\src\runtime\src\libraries\System.Security.Cryptography.Pkcs\src\System.Security.Cryptography.Pkcs.csproj (System.Security.Cryptography.Pkcs)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

internal static partial class Interop
{
    internal static partial class Crypt32
    {
        internal enum ErrorCode : int
        {
            S_OK = 0,
            CRYPT_E_INVALID_MSG_TYPE = unchecked((int)0x80091004),
            CRYPT_E_ATTRIBUTES_MISSING = unchecked((int)0x8009100f),
            CRYPT_E_UNKNOWN_ALGO = unchecked((int)0x80091002),
            CRYPT_E_RECIPIENT_NOT_FOUND = unchecked((int)0x8009100b),
            CRYPT_E_NOT_FOUND = unchecked((int)0x80092004),
            E_NOTIMPL = unchecked((int)0x80004001),
        }
    }
}