Lines Matching refs:right

316     x.left = x.right = 0;  in makeKey()
320 ctx.p[i] = x.right; in makeKey()
322 t = x.right; in makeKey()
323 x.right = x.left; in makeKey()
329 ctx.s0[i] = x.right; in makeKey()
331 t = x.right; in makeKey()
332 x.right = x.left; in makeKey()
338 ctx.s1[i] = x.right; in makeKey()
340 t = x.right; in makeKey()
341 x.right = x.left; in makeKey()
347 ctx.s2[i] = x.right; in makeKey()
349 t = x.right; in makeKey()
350 x.right = x.left; in makeKey()
356 ctx.s3[i] = x.right; in makeKey()
358 t = x.right; in makeKey()
359 x.right = x.left; in makeKey()
362 x.left = x.right = 0; in makeKey()
373 x.right = (in[i + 4] & 0xff) << 24 in encrypt()
378 out[o ] = (byte)(x.right >>> 24); in encrypt()
379 out[o + 1] = (byte)(x.right >>> 16); in encrypt()
380 out[o + 2] = (byte)(x.right >>> 8); in encrypt()
381 out[o + 3] = (byte) x.right; in encrypt()
386 x.left = x.right = 0; in encrypt()
396 x.right = (in[i + 4] & 0xff) << 24 in decrypt()
401 out[o ] = (byte)(x.right >>> 24); in decrypt()
402 out[o + 1] = (byte)(x.right >>> 16); in decrypt()
403 out[o + 2] = (byte)(x.right >>> 8); in decrypt()
404 out[o + 3] = (byte) x.right; in decrypt()
409 x.left = x.right = 0; in decrypt()
418 x.right ^= ((s0[x.left >>> 24 ] in blowfishEncrypt()
422 x.left ^= ((s0[x.right >>> 24 ] in blowfishEncrypt()
423 + s1[x.right >>> 16 & 0xff]) in blowfishEncrypt()
424 ^ s2[x.right >>> 8 & 0xff]) in blowfishEncrypt()
425 + s3[x.right & 0xff] ^ p[2]; in blowfishEncrypt()
426 x.right ^= ((s0[x.left >>> 24 ] in blowfishEncrypt()
430 x.left ^= ((s0[x.right >>> 24 ] in blowfishEncrypt()
431 + s1[x.right >>> 16 & 0xff]) in blowfishEncrypt()
432 ^ s2[x.right >>> 8 & 0xff]) in blowfishEncrypt()
433 + s3[x.right & 0xff] ^ p[4]; in blowfishEncrypt()
434 x.right ^= ((s0[x.left >>> 24 ] in blowfishEncrypt()
438 x.left ^= ((s0[x.right >>> 24 ] in blowfishEncrypt()
439 + s1[x.right >>> 16 & 0xff]) in blowfishEncrypt()
440 ^ s2[x.right >>> 8 & 0xff]) in blowfishEncrypt()
441 + s3[x.right & 0xff] ^ p[6]; in blowfishEncrypt()
442 x.right ^= ((s0[x.left >>> 24 ] in blowfishEncrypt()
446 x.left ^= ((s0[x.right >>> 24 ] in blowfishEncrypt()
447 + s1[x.right >>> 16 & 0xff]) in blowfishEncrypt()
448 ^ s2[x.right >>> 8 & 0xff]) in blowfishEncrypt()
449 + s3[x.right & 0xff] ^ p[8]; in blowfishEncrypt()
450 x.right ^= ((s0[x.left >>> 24 ] in blowfishEncrypt()
454 x.left ^= ((s0[x.right >>> 24 ] in blowfishEncrypt()
455 + s1[x.right >>> 16 & 0xff]) in blowfishEncrypt()
456 ^ s2[x.right >>> 8 & 0xff]) in blowfishEncrypt()
457 + s3[x.right & 0xff] ^ p[10]; in blowfishEncrypt()
458 x.right ^= ((s0[x.left >>> 24 ] in blowfishEncrypt()
462 x.left ^= ((s0[x.right >>> 24 ] in blowfishEncrypt()
463 + s1[x.right >>> 16 & 0xff]) in blowfishEncrypt()
464 ^ s2[x.right >>> 8 & 0xff]) in blowfishEncrypt()
465 + s3[x.right & 0xff] ^ p[12]; in blowfishEncrypt()
466 x.right ^= ((s0[x.left >>> 24 ] in blowfishEncrypt()
470 x.left ^= ((s0[x.right >>> 24 ] in blowfishEncrypt()
471 + s1[x.right >>> 16 & 0xff]) in blowfishEncrypt()
472 ^ s2[x.right >>> 8 & 0xff]) in blowfishEncrypt()
473 + s3[x.right & 0xff] ^ p[14]; in blowfishEncrypt()
474 x.right ^= ((s0[x.left >>> 24 ] in blowfishEncrypt()
478 x.left ^= ((s0[x.right >>> 24 ] in blowfishEncrypt()
479 + s1[x.right >>> 16 & 0xff]) in blowfishEncrypt()
480 ^ s2[x.right >>> 8 & 0xff]) in blowfishEncrypt()
481 + s3[x.right & 0xff] ^ p[16]; in blowfishEncrypt()
482 x.right ^= p[17]; in blowfishEncrypt()
491 x.right ^= ((s0[x.left >>> 24 ] in blowfishDecrypt()
495 x.left ^= ((s0[x.right >>> 24 ] in blowfishDecrypt()
496 + s1[x.right >>> 16 & 0xff]) in blowfishDecrypt()
497 ^ s2[x.right >>> 8 & 0xff]) in blowfishDecrypt()
498 + s3[x.right & 0xff] ^ p[15]; in blowfishDecrypt()
499 x.right ^= ((s0[x.left >>> 24 ] in blowfishDecrypt()
503 x.left ^= ((s0[x.right >>> 24 ] in blowfishDecrypt()
504 + s1[x.right >>> 16 & 0xff]) in blowfishDecrypt()
505 ^ s2[x.right >>> 8 & 0xff]) in blowfishDecrypt()
506 + s3[x.right & 0xff] ^ p[13]; in blowfishDecrypt()
507 x.right ^= ((s0[x.left >>> 24 ] in blowfishDecrypt()
511 x.left ^= ((s0[x.right >>> 24 ] in blowfishDecrypt()
512 + s1[x.right >>> 16 & 0xff]) in blowfishDecrypt()
513 ^ s2[x.right >>> 8 & 0xff]) in blowfishDecrypt()
514 + s3[x.right & 0xff] ^ p[11]; in blowfishDecrypt()
515 x.right ^= ((s0[x.left >>> 24 ] in blowfishDecrypt()
519 x.left ^= ((s0[x.right >>> 24 ] in blowfishDecrypt()
520 + s1[x.right >>> 16 & 0xff]) in blowfishDecrypt()
521 ^ s2[x.right >>> 8 & 0xff]) in blowfishDecrypt()
522 + s3[x.right & 0xff] ^ p[9]; in blowfishDecrypt()
523 x.right ^= ((s0[x.left >>> 24] in blowfishDecrypt()
527 x.left ^= ((s0[x.right >>> 24 ] in blowfishDecrypt()
528 + s1[x.right >>> 16 & 0xff]) in blowfishDecrypt()
529 ^ s2[x.right >>> 8 & 0xff]) in blowfishDecrypt()
530 + s3[x.right & 0xff] ^ p[7]; in blowfishDecrypt()
531 x.right ^= ((s0[x.left >>> 24 ] in blowfishDecrypt()
535 x.left ^= ((s0[x.right >>> 24 ] in blowfishDecrypt()
536 + s1[x.right >>> 16 & 0xff]) in blowfishDecrypt()
537 ^ s2[x.right >>> 8 & 0xff]) in blowfishDecrypt()
538 + s3[x.right & 0xff] ^ p[5]; in blowfishDecrypt()
539 x.right ^= ((s0[x.left >>> 24 ] in blowfishDecrypt()
543 x.left ^= ((s0[x.right >>> 24 ] in blowfishDecrypt()
544 + s1[x.right >>> 16 & 0xff]) in blowfishDecrypt()
545 ^ s2[x.right >>> 8 & 0xff]) in blowfishDecrypt()
546 + s3[x.right & 0xff] ^ p[3]; in blowfishDecrypt()
547 x.right ^= ((s0[x.left >>> 24 ] in blowfishDecrypt()
551 x.left ^= ((s0[x.right >>> 24 ] in blowfishDecrypt()
552 + s1[x.right >>> 16 & 0xff]) in blowfishDecrypt()
553 ^ s2[x.right >>> 8 & 0xff]) in blowfishDecrypt()
554 + s3[x.right & 0xff] ^ p[1]; in blowfishDecrypt()
555 x.right ^= p[0]; in blowfishDecrypt()
609 int left, right; field in Blowfish.Block