HomeSort by relevance Sort by last modified time
    Searched refs:Sbox (Results 1 - 5 of 5) sorted by null

  /external/dropbear/libtomcrypt/src/prngs/
sober128.c 90 t ^= Sbox[(t >> 24) & 0xFF]; \
93 t ^= Sbox[(t >> 24) & 0xFF]; \
sober128tab.c 76 /* Sbox for SOBER-128 */
80 * 8->32 Sbox generated by Millan et. al. at Queensland University of
93 static const ulong32 Sbox[256] = {
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
crypto-aes.js 39 function SubBytes(s, Nb) { // apply SBox to state S [§5.1.1]
41 for (var c=0; c<Nb; c++) s[r][c] = Sbox[s[r][c]];
111 function SubWord(w) { // apply SBox to 4-byte word w
112 for (var i=0; i<4; i++) w[i] = Sbox[w[i]];
123 // Sbox is pre-computed multiplicative inverse in GF(2^8) used in SubBytes and KeyExpansion [§5.1.1]
124 var Sbox = [0x63,0x7c,0x77,0x7b,0xf2,0x6b,0x6f,0xc5,0x30,0x01,0x67,0x2b,0xfe,0xd7,0xab,0x76,
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
crypto-aes.js 39 function SubBytes(s, Nb) { // apply SBox to state S [§5.1.1]
41 for (var c=0; c<Nb; c++) s[r][c] = Sbox[s[r][c]];
111 function SubWord(w) { // apply SBox to 4-byte word w
112 for (var i=0; i<4; i++) w[i] = Sbox[w[i]];
123 // Sbox is pre-computed multiplicative inverse in GF(2^8) used in SubBytes and KeyExpansion [§5.1.1]
124 var Sbox = [0x63,0x7c,0x77,0x7b,0xf2,0x6b,0x6f,0xc5,0x30,0x01,0x67,0x2b,0xfe,0xd7,0xab,0x76,
  /external/openssl/crypto/aes/asm/
bsaes-x86_64.pl 56 # In attempt to address deterioration sbox() was tested in FP
117 sub Sbox {
670 &Sbox (@b,@t);
681 &Sbox (@b,@t);
786 &Sbox (@XMM[0..7, 8..15]);
    [all...]

Completed in 66 milliseconds