示例#1
0
        public HabboCrypto(BigInteger n, BigInteger e, BigInteger d)
            : base(200)
        {
            this.RSA = new RSA(n, e, d, 0, 0, 0, 0, 0);

            this.RC4 = new RC4();

            this.Initialized = false;
        }
示例#2
0
        public HabboCrypto()
            : base(200)
        {
            this.RSA = new RSA(n, e, d, 0, 0, 0, 0, 0);

            this.RC4 = new RC4();

            this.Initialized = false;
        }
示例#3
0
 public byte[] GetBytes(RC4 RC4)
 {
     return RC4.Parse(GetBytes());
 }