Searched refs:str_feed (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/crypto/heimdal/appl/telnet/libtelnet/
H A Denc_des.c70 DES_cblock str_feed; member in struct:stinfo
550 memcpy(stp->str_feed, b, sizeof(DES_cblock));
555 *s = stp->str_output[index] = (stp->str_feed[index] ^ *s);
582 memcpy(stp->str_feed, b, sizeof(DES_cblock));
589 return(data ^ stp->str_feed[index]);
621 DES_ecb_encrypt(&stp->str_feed,&b, &stp->str_sched, 1);
622 memcpy(stp->str_feed, b, sizeof(DES_cblock));
625 *s++ ^= stp->str_feed[index];
650 DES_ecb_encrypt(&stp->str_feed,&b,&stp->str_sched, 1);
651 memcpy(stp->str_feed,
[all...]
/freebsd-11-stable/contrib/telnet/libtelnet/
H A Denc_des.c73 Block str_feed; member in struct:fb::stinfo
547 memmove((void *)stp->str_feed, (void *)b, sizeof(Block));
552 *s = stp->str_output[idx] = (stp->str_feed[idx] ^ *s);
580 memmove((void *)stp->str_feed, (void *)b, sizeof(Block));
587 return(data ^ stp->str_feed[idx]);
619 des_ecb_encrypt((Block *)stp->str_feed, (Block *)b, stp->str_sched, 1);
620 memmove((void *)stp->str_feed, (void *)b, sizeof(Block));
623 *s++ ^= stp->str_feed[idx];
649 des_ecb_encrypt((Block *)stp->str_feed, (Block *)b, stp->str_sched, 1);
650 memmove((void *)stp->str_feed, (voi
[all...]

Completed in 57 milliseconds