Cosmos/source/Indy.IL2CPU/CustomImplementation/System/Security/Cryptography/Utils.cs
2008-10-29 18:38:39 +00:00

14 lines
403 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Indy.IL2CPU.Plugs;
namespace Indy.IL2CPU.CustomImplementation.System.Security.Cryptography
{
[Plug(TargetName="System.Security.Cryptography.Utils", IsMicrosoftdotNETOnly = true)]
public static class Utils
{
public static int get_FipsAlgorithmPolicy() { return 0; }
}
}