HomeSort by relevance Sort by last modified time
    Searched defs:workingKey (Results 1 - 6 of 6) sorted by null

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
RC4Engine.java 21 private byte[] workingKey = null;
43 workingKey = ((KeyParameter)params).getKey();
44 setKey(workingKey);
106 setKey(workingKey);
113 workingKey = keyBytes;
115 // System.out.println("the key length is ; "+ workingKey.length);
RC2Engine.java 58 private int[] workingKey;
130 workingKey = generateWorkingKey(param.getKey(),
137 workingKey = generateWorkingKey(key, key.length * 8);
166 if (workingKey == null)
219 x10 = rotateWordLeft(x10 + (x32 & ~x76) + (x54 & x76) + workingKey[i ], 1);
220 x32 = rotateWordLeft(x32 + (x54 & ~x10) + (x76 & x10) + workingKey[i+1], 2);
221 x54 = rotateWordLeft(x54 + (x76 & ~x32) + (x10 & x32) + workingKey[i+2], 3);
222 x76 = rotateWordLeft(x76 + (x10 & ~x54) + (x32 & x54) + workingKey[i+3], 5);
225 x10 += workingKey[x76 & 63];
226 x32 += workingKey[x10 & 63]
    [all...]
DESEngine.java 17 private int[] workingKey = null;
45 workingKey = generateWorkingKey(encrypting,
70 if (workingKey == null)
85 desFunc(workingKey, in, inOff, out, outOff);
BlowfishEngine.java 309 private byte[] workingKey = null;
335 this.workingKey = ((KeyParameter)params).getKey();
336 setKey(this.workingKey);
355 if (workingKey == null)
TwofishEngine.java 223 private byte[] workingKey = null;
274 this.workingKey = ((KeyParameter)params).getKey();
275 this.k64Cnt = (this.workingKey.length / 8); // pre-padded ?
276 setKey(this.workingKey);
295 if (workingKey == null)
324 if (this.workingKey != null)
326 setKey(this.workingKey);
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 

Completed in 245 milliseconds