コード例 #1
0
ファイル: CryptoAsym.cs プロジェクト: designfirstee/TSS.MSR
        public static bool IsCurveSupported(EccCurve curve)
        {
#if __MonoCS__
            return(false);
#else
            return(RawEccKey.IsCurveSupported(curve));
#endif
        }
コード例 #2
0
 public static bool IsCurveSupported(EccCurve curve)
 {
     return(RawEccKey.IsCurveSupported(curve));
 }