コード例 #1
0
ファイル: HabboCrypto.cs プロジェクト: habb0/FerriEmulator
        public HabboCrypto(BigInteger n, BigInteger e, BigInteger d)
        {
            this.DH = new DiffieHellman(200);

            this.RSA = new RSA(n, e, d, 0, 0, 0, 0, 0);

            this.RC4 = new RC4();

            this.Initialized = false;
        }
コード例 #2
0
ファイル: HabboCrypto.cs プロジェクト: habb0/FerriEmulator
        public HabboCrypto(BigInteger n, BigInteger e, BigInteger d)
        {
            this.DH = new DiffieHellman(200);

            this.RSA = new RSA(n, e, d, 0, 0, 0, 0, 0);

            this.RC4 = new RC4();

            this.Initialized = false;
        }