Lines Matching +full:inside +full:- +full:secure
2 OpenSSH-1.2 and should be considered OBSOLETE. It has been left in
11 Updated 19 Oct 1999 for OpenSSH-1.2
12 Updated 20 May 2001 note obsolete for > OpenSSH-1.2
15 the auxiliary programs ssh-keygen, ssh-agent, ssh-add, and
16 make-ssh-known-hosts. The main program for each of these is in a .c
24 - These provide an arbitrary size buffer, where data can be appended.
31 - Ssh uses the GNU GZIP compression library (ZLIB).
35 - Ssh contains several encryption algorithms. These are all
42 - Uses the LibreSSL BIGNUM sublibrary.
46 - Uses arc4random() and such.
50 - Ssh uses the RSA routines in libssl.
54 - RSA keys are stored in files with a special format. The code to
61 - The ssh binary packet protocol is implemented in packet.c. The
67 - The code in packet.c calls the buffer manipulation routines
73 - Code for various types of channel forwarding is in channels.c.
75 channels inside the secure channel, and uses this framework to
82 - Code to communicate with the authentication agent is in authfd.c.
86 - Code for various authentication methods resides in auth-*.c
87 (auth-passwd.c, auth-rh-rsa.c, auth-rhosts.c, auth-rsa.c). This
93 - In the client end, authentication code is in sshconnect.c. It
100 - The client main program is in ssh.c. It first parses arguments
109 Pseudo-tty manipulation and tty modes
111 - Code to allocate and use a pseudo tty is in pty.c. Code to
116 - The code to do things that are done when a user logs in are in
122 - The programs use the functions fatal(), log(), debug(), error()
125 log-server.c; it is used in the server program. The other
127 is in log-client.c. The definitions are in ssh.h.
131 - The sshd daemon starts by processing arguments and reading the
136 - When the server receives a connection, it forks, disables the
144 - The code for the server is in sshd.c. It contains a lot of
146 - server main program
147 - waiting for connections
148 - processing new connection
149 - authentication
150 - preparatory operations
151 - building up the execution environment for the user program
152 - starting the user program.
156 - There are several other files in the distribution that contain
159 uidswap.c uid-swapping