Home
last modified time | relevance | path

Searched refs:str_output (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/telnet/libtelnet/
H A Denc_des.c70 Block str_output; member
494 memmove((void *)stp->str_output, (void *)seed, sizeof(Block)); in fb64_stream_iv()
507 memmove((void *)stp->str_output, (void *)stp->str_iv, sizeof(Block)); in fb64_stream_key()
544 DES_ecb_encrypt((Block *)stp->str_output, (Block *)b, &stp->str_sched, 1); in cfb64_encrypt()
550 *s = stp->str_output[idx] = (stp->str_feed[idx] ^ *s); in cfb64_encrypt()
577 DES_ecb_encrypt((Block *)stp->str_output, (Block *)b, &stp->str_sched, 1); in cfb64_decrypt()
584 stp->str_output[idx] = data; in cfb64_decrypt()
/freebsd/crypto/heimdal/appl/telnet/libtelnet/
H A Denc_des.c69 DES_cblock str_output; member
501 memcpy(stp->str_output, seed, sizeof(DES_cblock)); in fb64_stream_iv()
513 memcpy(stp->str_output, stp->str_iv, sizeof(DES_cblock)); in fb64_stream_key()
549 DES_ecb_encrypt(&stp->str_output, &b,&stp->str_sched, 1); in cfb64_encrypt()
555 *s = stp->str_output[index] = (stp->str_feed[index] ^ *s); in cfb64_encrypt()
581 DES_ecb_encrypt(&stp->str_output,&b, &stp->str_sched, 1); in cfb64_decrypt()
588 stp->str_output[index] = data; in cfb64_decrypt()