Home | History | Annotate | Download | only in radius

Lines Matching defs:plain

734     u_char  plain[32];
743 memcpy(plain, vp->strvalue, sizeof(plain));
751 plain[i] ^= buf[i];
759 plain[i + 16] ^= buf[i];
766 mppe_set_keys(challenge, &plain[8]);
789 u_char plain[32];
807 memcpy(plain, crypt, 32);
816 plain[i] ^= buf[i];
818 if (plain[0] != sizeof(mppe_send_key) /* 16 */) {
820 (int) plain[0], type);
829 plain[16] ^= buf[0]; /* only need the first byte */
832 memcpy(mppe_send_key, plain + 1, 16);
834 memcpy(mppe_recv_key, plain + 1, 16);