Example #1
0
 public HabboCrypto(BigInteger n, BigInteger e, BigInteger d)
     : base(200)
 {
     this.RSA         = new HabboEncryption.RSA(n, e, d, 0, 0, 0, 0, 0);
     this.RC4         = new HabboEncryption.RC4();
     this.Initialized = false;
 }
Example #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;
        }
Example #3
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;
        }
Example #4
0
 public HabboEncryption()
     : base(new BigInteger("114670925920269957593299136150366957983142588366300079186349531", 10), new BigInteger("1589935137502239924254699078669119674538324391752663931735947", 10))
 {
     this.RSA = new RSA(n, e, d, 0, 0, 0, 0, 0);
 }
Example #5
0
 public HabboEncryption()
 {
     this.RSA = new RSA(n, e, d, 0, 0, 0, 0, 0);
 }