Home
last modified time | relevance | path

Searched refs:TELOPT_ENCRYPT (Results 1 – 7 of 7) sorted by relevance

/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/telnet/
H A Dtelnet.c387 case TELOPT_ENCRYPT:
417 if (option == TELOPT_ENCRYPT)
503 case TELOPT_ENCRYPT: /* encryption variable option */
989 case TELOPT_ENCRYPT: in suboption()
994 if (my_want_state_is_dont(TELOPT_ENCRYPT)) in suboption()
999 if (my_want_state_is_dont(TELOPT_ENCRYPT)) in suboption()
1004 if (my_want_state_is_wont(TELOPT_ENCRYPT)) in suboption()
1009 if (my_want_state_is_wont(TELOPT_ENCRYPT)) in suboption()
1014 if (my_want_state_is_wont(TELOPT_ENCRYPT)) in suboption()
1025 if (my_want_state_is_dont(TELOPT_ENCRYPT)) in suboption()
[all …]
H A Dencrypt.c130 static uchar_t str_send[64] = { IAC, SB, TELOPT_ENCRYPT,
133 static uchar_t str_start[72] = { IAC, SB, TELOPT_ENCRYPT };
134 static uchar_t str_end[] = { IAC, SB, TELOPT_ENCRYPT, 0, IAC, SE };
722 static uchar_t str_keyid[(MAXKEYLEN*2)+5] = { IAC, SB, TELOPT_ENCRYPT };
H A Dterminal.c209 if (my_want_state_is_will(TELOPT_ENCRYPT) &&
H A Denc_des.c143 fbp->fb_feed[2] = TELOPT_ENCRYPT; in cfb64_init()
H A Dutilities.c547 case TELOPT_ENCRYPT:
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A Din.telnetd.c363 if (myopts[TELOPT_ENCRYPT] == OPT_YES) in auth_finished()
364 send_wont(TELOPT_ENCRYPT); in auth_finished()
365 myopts[TELOPT_ENCRYPT] = remopts[TELOPT_ENCRYPT] = OPT_NO; in auth_finished()
368 myopts[TELOPT_ENCRYPT] == OPT_YES && in auth_finished()
369 remopts[TELOPT_ENCRYPT] == OPT_YES) { in auth_finished()
385 (uchar_t)TELOPT_ENCRYPT, in auth_finished()
1022 *p++ = TELOPT_ENCRYPT; in encrypt_send_request_start()
1060 (uchar_t)TELOPT_ENCRYPT, in encrypt_is()
1252 *p++ = TELOPT_ENCRYPT; in encrypt_send_encrypt_is()
1368 *p++ = TELOPT_ENCRYPT; in encrypt_start_output()
[all …]
/illumos-gate/usr/src/head/arpa/
H A Dtelnet.h122 #define TELOPT_ENCRYPT 38 /* Encryption option */ macro