Hash input.
470 {
471 using namespace fash_hash_detail;
472 uint64 h0, h1, h2, h3, h4, h5, h6, h7, h8, h9, h10, h11;
473 size_t newLength = length + m_remainder;
474 uint8 remainder;
475 union
476 {
477 const uint8 *p8;
478 uint64 *p64;
479 size_t i;
480 } u;
481 const uint64 *end;
482
483
484 if(newLength < sc_bufSize)
485 {
486 memcpy(&((uint8 *)
m_data)[m_remainder], message, length);
487 m_length = length + m_length;
488 m_remainder = (uint8) newLength;
489 return;
490 }
491
492
493 if(m_length < sc_bufSize)
494 {
495 h0 = h3 = h6 = h9 = m_state[0];
496 h1 = h4 = h7 = h10 = m_state[1];
497 h2 = h5 = h8 = h11 = sc_const;
498 }
499 else
500 {
501 h0 = m_state[0];
502 h1 = m_state[1];
503 h2 = m_state[2];
504 h3 = m_state[3];
505 h4 = m_state[4];
506 h5 = m_state[5];
507 h6 = m_state[6];
508 h7 = m_state[7];
509 h8 = m_state[8];
510 h9 = m_state[9];
511 h10 = m_state[10];
512 h11 = m_state[11];
513 }
514 m_length = length + m_length;
515
516
517 if(m_remainder)
518 {
519 uint8 prefix = sc_bufSize - m_remainder;
520 memcpy(&(((uint8 *)
m_data)[m_remainder]), message, prefix);
522 Mix(u.p64, h0, h1, h2, h3, h4, h5, h6, h7, h8, h9, h10, h11);
523 Mix(&u.p64[sc_numVars], h0, h1, h2, h3, h4, h5, h6, h7, h8, h9, h10, h11);
524 u.p8 = ((const uint8 *) message) + prefix;
525 length -= prefix;
526 }
527 else
528 {
529 u.p8 = (const uint8 *) message;
530 }
531
532
533 end = u.p64 + (length / sc_blockSize) * sc_numVars;
534 remainder = (uint8) (length - ((const uint8 *) end - u.p8));
535 if(ALLOW_UNALIGNED_READS || (u.i & 0x7) == 0)
536 {
537 while(u.p64 < end)
538 {
539 Mix(u.p64, h0, h1, h2, h3, h4, h5, h6, h7, h8, h9, h10, h11);
540 u.p64 += sc_numVars;
541 }
542 }
543 else
544 {
545 while(u.p64 < end)
546 {
547 memcpy(
m_data, u.p8, sc_blockSize);
548 Mix(
m_data, h0, h1, h2, h3, h4, h5, h6, h7, h8, h9, h10, h11);
549 u.p64 += sc_numVars;
550 }
551 }
552
553
554 m_remainder = remainder;
555 memcpy(
m_data, end, remainder);
556
557
558 m_state[0] = h0;
559 m_state[1] = h1;
560 m_state[2] = h2;
561 m_state[3] = h3;
562 m_state[4] = h4;
563 m_state[5] = h5;
564 m_state[6] = h6;
565 m_state[7] = h7;
566 m_state[8] = h8;
567 m_state[9] = h9;
568 m_state[10] = h10;
569 m_state[11] = h11;
570 }