Lines Matching refs:str_index
75 int str_index; member
498 stp->str_index = sizeof(Block); in fb64_stream_iv()
509 stp->str_index = sizeof(Block); in fb64_stream_key()
540 idx = stp->str_index; in cfb64_encrypt()
554 stp->str_index = idx; in cfb64_encrypt()
569 if (stp->str_index) in cfb64_decrypt()
570 --stp->str_index; in cfb64_decrypt()
574 idx = stp->str_index++; in cfb64_decrypt()
579 stp->str_index = 1; /* Next time will be 1 */ in cfb64_decrypt()
613 idx = stp->str_index; in ofb64_encrypt()
624 stp->str_index = idx; in ofb64_encrypt()
639 if (stp->str_index) in ofb64_decrypt()
640 --stp->str_index; in ofb64_decrypt()
644 idx = stp->str_index++; in ofb64_decrypt()
649 stp->str_index = 1; /* Next time will be 1 */ in ofb64_decrypt()