コード例 #1
0
ファイル: ECAlgorithms.cs プロジェクト: checkymander/sshiva
        internal static ECPoint ImplCheckResult(ECPoint p)
        {
            if (!p.IsValidPartial())
            {
                throw new InvalidOperationException("Invalid result");
            }

            return(p);
        }