Graal Forums  

Go Back   Graal Forums > Development Forums > Future Improvements
FAQ Members List Calendar Today's Posts

 
 
Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 08-22-2009, 09:08 AM
WhiteDragon WhiteDragon is offline
Banned
Join Date: Feb 2007
Posts: 1,002
WhiteDragon is a splendid one to beholdWhiteDragon is a splendid one to beholdWhiteDragon is a splendid one to beholdWhiteDragon is a splendid one to beholdWhiteDragon is a splendid one to behold
And here is the script that it's for... I had to remove all whitespace, comments and two precomputed variables for it to fit though.

If the >>> ever gets added I'll release a working version in the Code Gallery.

Example:
AESEncryptCtr("bob", "kadoweu239a0djwei23oqe9w", 128)

I imagine this could be added to shared.encrypt as well.

PHP Code:
function Cipher(temp.inputtemp.w) {
  
temp.Nb 4;
  
temp.Nr temp.w.size()/temp.Nb 1;
  
temp.state = {};
  
temp.state[0] = {};
  
temp.state[1] = {};
  
temp.state[2] = {};
  
temp.state[3] = {};
  for (
temp.0temp.4*temp.Nbtemp.i++) {
  }
  
temp.state AddRoundKey(temp.statetemp.w0temp.Nb);
  for (
temp.round 1temp.round temp.Nrtemp.round++) {
    
temp.state SubBytes(temp.statetemp.Nb);
    
temp.state ShiftRows(temp.statetemp.Nb);
    
temp.state MixColumns(temp.statetemp.Nb);
    
temp.state AddRoundKey(temp.statetemp.wtemp.roundtemp.Nb);
  }
  
temp.state SubBytes(temp.statetemp.Nb);
  
temp.state ShiftRows(temp.statetemp.Nb);
  
temp.state AddRoundKey(temp.statetemp.wtemp.Nrtemp.Nb);
  
temp.output = new [4*temp.Nb];
  for (
temp.0temp.4*temp.Nbtemp.i++) {
  }
  return 
temp.output;
}
function 
SubBytes(temp.stemp.Nb) {
  for (
temp.0temp.4temp.r++) {
    for (
temp.0temp.temp.Nbtemp.c++) {
      
temp.s[temp.r][temp.c] = this.Sbox[temp.s[temp.r][temp.c]];
    }
  }
  return 
s;
}
function 
ShiftRows(temp.stemp.Nb) {
  
temp.= new [4];
  for (
temp.1temp.4temp.r++) {
    for (
temp.0temp.4temp.c++) {
    }
    for (
temp.c=0temp.4temp.c++) {
      
temp.s[temp.r][temp.c] = temp.t[temp.c];
    }
  }
  return 
s;
}
function 
MixColumns(temp.stemp.Nb) {
  for (
temp.0temp.4temp.c++) {
    
temp.= new [4];
    
temp.= new [4];
    for (
temp.0temp.4temp.i++) {
      
temp.a[temp.i] = temp.s[temp.i][temp.c];
      
temp.b[temp.i] = temp.s[temp.i][temp.c]&0x80 temp.s[temp.i][temp.c]<<xor 0x011b temp.s[temp.i][temp.c]<<1;
    }
    
temp.s[0][temp.c] = temp.b[0] xor temp.a[1] xor temp.b[1] xor temp.a[2] xor temp.a[3];
    
temp.s[1][temp.c] = temp.a[0] xor temp.b[1] xor temp.a[2] xor temp.b[2] xor temp.a[3];
    
temp.s[2][temp.c] = temp.a[0] xor temp.a[1] xor temp.b[2] xor temp.a[3] xor temp.b[3];
    
temp.s[3][temp.c] = temp.a[0] xor temp.b[0] xor temp.a[1] xor temp.a[2] xor temp.b[3];
  }
  return 
temp.s;
}
function 
AddRoundKey(temp.statetemp.wtemp.rndtemp.Nb) {
  for (
temp.0temp.4temp.r++) {
    for (
temp.0temp.temp.Nbtemp.c++) {
      
temp.state[temp.r][temp.c] = temp.state[temp.r][temp.c] xor temp.w[temp.rnd*temp.c][temp.r];
    }
  }
  return 
temp.state;
}
function 
KeyExpansion(temp.key) {
  
temp.Nb 4;
  
temp.Nk temp.key.size()/4;
  
temp.Nr temp.Nk 6;
  
temp.= new [temp.Nb * (temp.Nr+1)];
  
temp.temp = new [4];
  for (
temp.0temp.temp.Nktemp.i++) {
    
temp.= {temp.key[4*temp.i], temp.key[4*temp.1], temp.key[4*temp.2], temp.key[4*temp.3]};
    
temp.w[temp.i] = temp.r;
  }
  for (
temp.temp.Nktemp.< (temp.Nb*(temp.Nr+1)); temp.i++) {
    
temp.w[temp.i] = new [4];
    for (
temp.0temp.4temp.t++) {
      
temp.temp[temp.t] = temp.w[temp.i-1][temp.t];
    }
      
temp.temp SubWord(RotWord(temp.temp));
      for (
temp.0temp.4temp.t++) {
        
temp.temp[temp.t] = temp.temp[temp.t] xor this.Rcon[temp.i/temp.Nk][temp.t];
      }
      
temp.temp SubWord(temp.temp);
    }
    for (
temp.0temp.4temp.t++) {
      
temp.w[temp.i][temp.t] = temp.w[temp.i-temp.Nk][temp.t] xor temp.temp[temp.t];
    }
  }
  return 
temp.w;
}
function 
SubWord(temp.w) {
  for (
temp.0temp.4temp.i++) {
    
temp.w[temp.i] = this.Sbox[temp.w[temp.i]];
  }
  return 
w;
}
function 
RotWord(temp.w) {
  
temp.tmp temp.w[0];
  for (
temp.0temp.3temp.i++) {
    
temp.w[temp.i] = temp.w[temp.i+1];
  }
  
temp.w[3] = temp.tmp;
  return 
temp.w;
}
function 
AESEncryptCtr(temp.plaintexttemp.passwordtemp.nBits) {
  
temp.blockSize 16;
  if (!(
temp.nBits == 128 || temp.nBits == 192 || temp.nBits == 256)) return "";
    
  
temp.nBytes temp.nBits/8;
  
temp.pwBytes = new [temp.nBytes];
  for (
temp.0temp.temp.nBytestemp.i++) {
    
temp.pwBytes[temp.i] = getascii(temp.password.charat(i));
  }
  
temp.key Cipher(temp.pwBytesKeyExpansion(temp.pwBytes));
  
temp.key.addarray(temp.key.subarray(0temp.nBytes-16));
  
temp.counterBlock = new [temp.blockSize];
  
temp.nonce timevar2;
  
temp.nonceSec int(temp.nonce/1000);
  for (
temp.0temp.4temp.i++) {
    
temp.counterBlock[temp.i] = (temp.nonceSec >>> temp.i*8) & 0xff;
  }
  for (
temp.0temp.4temp.i++) {
    
temp.counterBlock[temp.i+4] = temp.nonceMs 0xff;
  }
  
temp.ctrTxt "";
  for (
temp.0temp.8temp.i++) {
    
temp.ctrTxt @= char(temp.counterBlock[temp.i]);
  }
  
temp.keySchedule KeyExpansion(temp.key);
  
temp.blockCount ceil(temp.plaintext.length()/temp.blockSize)+1;
  
temp.ciphertxt = new [temp.blockCount];
  for (
temp.0temp.temp.blockCounttemp.b++) {
    for (
temp.0temp.4temp.c++) {
      
temp.counterBlock[15-temp.c] = (temp.>>> temp.c*8) & 0xff;
    }
    for (
temp.0temp.4temp.c++) {
      
temp.counterBlock[15-temp.c-4] = (temp.b/0x100000000 >>> temp.c*8);
    }
    
temp.cipherCntr Cipher(temp.counterBlocktemp.keySchedule);
    
temp.cipherChar = new [temp.blockLength];
    for (
temp.0temp.temp.blockLengthtemp.i++) {
      
temp.cipherChar[temp.i] = temp.cipherCntr[temp.i] xor getascii(temp.plaintext.charat(temp.b*temp.blockSize+temp.i));
      
temp.cipherChar[temp.i] = char(temp.cipherChar[temp.i]);
    }
    for (
temp.0temp.cipherChar.size(); temp.i++) {
      
temp.ciphertxt[temp.b] @= cipherChar[temp.i];
    }
  }
  
temp.ciphertext temp.ctrTxt;
  for (
temp.0temp.cipherChar.size(); temp.i++) {
    
temp.ciphertext @= cipherChar[temp.i];
  }
  
temp.ciphertext base64encode(ciphertext);
  return 
temp.ciphertext;
}
function 
ceil(temp.i) {
  return (
temp.== int(temp.i) ? temp.int(temp.i)+1);
}
function 
AESDecryptCtr(temp.ciphertexttemp.passwordtemp.nBits) {
  
temp.blockSize 16;
  if (!(
temp.nBits==128 || temp.nBits==192 || temp.nBits==256)) return "";
  
temp.ciphertext base64decode(temp.ciphertext);
  
temp.nBytes temp.nBits/8;
  
temp.pwBytes = new [temp.nBytes];
  for (
temp.0temp.temp.nBytestemp.i++) {
    
temp.pwBytes[temp.i] = getascii(temp.password.charat(i));
  }
  
temp.key Cipher(temp.pwBytesKeyExpansion(temp.pwBytes));
  
temp.key.addarray(temp.key.subarray(0temp.nBytes-16));
  
temp.counterBlock = new [8];
  
temp.ctrTxt temp.ciphertext.subarray(08);
  for (
temp.0temp.8temp.i++)
    
temp.counterBlock[temp.i] = getascii(temp.ctrTxt.charat(i));
  
temp.keySchedule KeyExpansion(temp.key);
  
temp.nBlocks ceil((temp.ciphertext.length()-8) / temp.blockSize);
  
temp.ct = new [temp.nBlocks];
  for (
temp.0temp.temp.nBlockstemp.b++)
    
temp.ct[temp.b] = temp.ciphertext.subarray(8+temp.b*temp.blockSize8+temp.b*temp.blockSize+temp.blockSize);
  
temp.ciphertext temp.ct;
  
temp.plaintxt = new [temp.ciphertext.length];
  for (
temp.0temp.temp.nBlockstemp.b++) {
    for (
temp.0temp.4temp.c++) {
      
temp.counterBlock[15-temp.c] = ((temp.b) >>> temp.c*8) & 0xff;
    }
    for (
temp.0temp.4temp.c++) {
      
temp.counterBlock[15-temp.c-4] = (((temp.b+1)/0x100000000-1) >>> temp.c*8) & 0xff;
    }
    
temp.cipherCntr Cipher(temp.counterBlocktemp.keySchedule);
    
temp.plaintxtByte = new [temp.ciphertext[temp.b].length()];
    for (
temp.0temp.temp.ciphertext[temp.b].length(); temp.i++) {
      
temp.plaintxtByte[temp.i] = temp.cipherCntr[temp.i] xor getascii(temp.ciphertext[temp.b].charat(i));
      
temp.plaintxtByte[temp.i] = char(temp.plaintxtByte[i]);
    }
    
temp.plaintxt "";
    for (
temp.0temp.temp.plaintxtByte.size(); temp.i++) {
      
temp.plaintxt[temp.b] @= temp.plaintxtByte[temp.i];
    }
  }
  
temp.plaintext "";
  for (
temp.0temp.temp.plaintxt.size(); temp.i++) {
    
temp.plaintext @= temp.plaintxt[temp.i];
  }
  return 
temp.plaintext;

Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 07:53 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.