Searched defs:inOffset (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DAESWrapCipher.java246 * @param inOffset the offset in <code>in</code> where the input
254 protected byte[] engineUpdate(byte[] in, int inOffset, int inLen) { argument
265 * @param inOffset the offset in <code>in</code> where the input
276 protected int engineUpdate(byte[] in, int inOffset, int inLen, argument
289 * @param inOffset the offset in <code>in</code> where the input
310 * @param inOffset the offset in <code>in</code> where the input
321 protected int engineDoFinal(byte[] in, int inOffset, int inLen, argument
H A DBlowfishCrypt.java170 private void cipherBlock(byte[] in, int inOffset, argument
172 temp[0] = ((in[inOffset ] ) << 24) |
173 ((in[inOffset + 1] & 0xff) << 16) |
174 ((in[inOffset + 2] & 0xff) << 8) |
175 ((in[inOffset + 3] & 0xff) );
177 temp[1] = ((in[inOffset + 4] ) << 24) |
178 ((in[inOffset + 5] & 0xff) << 16) |
179 ((in[inOffset + 6] & 0xff) << 8) |
180 ((in[inOffset + 7] & 0xff) );
H A DAESCrypt.java348 void encryptBlock(byte[] in, int inOffset, argument
352 int t0 = ((in[inOffset++] ) << 24 |
353 (in[inOffset++] & 0xFF) << 16 |
354 (in[inOffset++] & 0xFF) << 8 |
355 (in[inOffset++] & 0xFF) ) ^ K[keyOffset++];
356 int t1 = ((in[inOffset++] ) << 24 |
357 (in[inOffset++] & 0xFF) << 16 |
358 (in[inOffset++] & 0xFF) << 8 |
359 (in[inOffset++] & 0xFF) ) ^ K[keyOffset++];
360 int t2 = ((in[inOffset
419 decryptBlock(byte[] in, int inOffset, byte[] out, int outOffset) argument
[all...]
H A DDESedeWrapCipher.java300 * @param inOffset the offset in <code>in</code> where the input
308 protected byte[] engineUpdate(byte[] in, int inOffset, int inLen) { argument
319 * @param inOffset the offset in <code>in</code> where the input
330 protected int engineUpdate(byte[] in, int inOffset, int inLen, argument
343 * @param inOffset the offset in <code>in</code> where the input
351 protected byte[] engineDoFinal(byte[] in, int inOffset, int inLen) argument
363 * @param inOffset the offset in <code>in</code> where the input
H A DDESCrypt.java596 void cipherBlock(byte[] in, int inOffset, byte[] out, int outOffset) { argument
603 left = initialPermutationLeft(in, inOffset);
604 right = initialPermutationRight(in, inOffset);
/openjdk7/jdk/src/share/classes/sun/security/jgss/wrapper/
H A DNativeGSSContext.java386 public int wrap(byte[] inBuf, int inOffset, int len, byte[] outBuf, argument
389 byte[] result = wrap(inBuf, inOffset, len, msgProp);
416 public int unwrap(byte[] inBuf, int inOffset, int len, argument
420 if ((inOffset != 0) || (len != inBuf.length)) {
422 System.arraycopy(inBuf, inOffset, temp, 0, len);
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DKrb5Context.java880 public final int wrap(byte inBuf[], int inOffset, int len, argument
892 new WrapToken(this, msgProp, inBuf, inOffset, len);
896 new WrapToken_v2(this, msgProp, inBuf, inOffset, len);
1006 public final int unwrap(byte inBuf[], int inOffset, int len, argument
1016 new WrapToken(this, inBuf, inOffset, len, msgProp);
1021 new WrapToken_v2(this, inBuf, inOffset, len, msgProp);

Completed in 62 milliseconds