Esempio n. 1
0
            internal int codeExtra;       // code extra for scramble (old tags)

            public TAG_INFO(PRX outerInstance, int tag, int[] key, int code, int codeExtra)
            {
                this.outerInstance = outerInstance;
                this.tag           = tag;
                this.key           = intArrayToTagArray(key);
                this.code          = code;
                this.codeExtra     = codeExtra;
            }
Esempio n. 2
0
 public TAG_INFO(PRX outerInstance, int tag, int[] key, int code)
 {
     this.outerInstance = outerInstance;
     this.tag           = tag;
     this.key           = key;
     this.code          = code;
     this.codeExtra     = 0;
 }
Esempio n. 3
0
 public CryptoEngine()
 {
     installSettingsListeners();
     CryptoEngineStatus = true;
     kirk   = new KIRK();
     prx    = new PRX();
     sd     = new SAVEDATA();
     amctrl = new AMCTRL();
     pgd    = new PGD();
     drm    = new DRM();
 }