コード例 #1
0
ファイル: ECCurve25519.cs プロジェクト: appcoreopc/boarssl
        internal override MutableECPoint Decode(byte[] enc)
        {
            MutableECPointCurve25519 P = new MutableECPointCurve25519();

            P.Decode(enc);
            return(P);
        }
コード例 #2
0
ファイル: ECCurve25519.cs プロジェクト: appcoreopc/boarssl
        internal override MutableECPoint MakeGenerator()
        {
            MutableECPointCurve25519 G = new MutableECPointCurve25519();

            G.Decode(GetGenerator(false));
            return(G);
        }