Cosmos/source/Cosmos.System.Plugs/System/Security/Cryptography/CryptoConfigImpl.cs

24 lines
723 B
C#

using Cosmos.IL2CPU.Plugs;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Cosmos.System.Plugs.System.Security.Cryptography
{
[Plug(Target = typeof(global::System.Security.Cryptography.CryptoConfig))]
class CryptoConfigImpl
{
/// <summary>Indicates whether the runtime should enforce the policy to create only Federal Information Processing Standard (FIPS) certified algorithms.</summary>
/// <returns>true to enforce the policy; otherwise, false. </returns>
public static bool AllowOnlyFipsAlgorithms
{
get
{
return false;
}
}
}
}