mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
24 lines
723 B
C#
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;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|