├── .gitattributes ├── .gitignore ├── DesktopSharing.suo ├── DesktopSharingStarter ├── App.config ├── DesktopSharingServiceMonitor.csproj ├── DesktopSharingServiceMonitor.csproj.user ├── Installer1.Designer.cs ├── Installer1.cs ├── Installer1.resx ├── Interactive.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Service1.cs ├── Service1.designer.cs └── Toolkit.cs ├── DesktopSharing_Server.sln ├── DesktopSharing_Server.suo ├── DesktopSharing_Server.v12.suo ├── DesktopSharing_Server ├── App.config ├── AppIcon.ico ├── DesktopService_API.cs ├── DesktopSharing_Server.csproj ├── Desktop_Service.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── ScreenCaptureService.cs └── privatekey.xml ├── DesktopSharing_Viewer.sln ├── DesktopSharing_Viewer.v12.suo ├── DesktopSharing_Viewer ├── App.config ├── Code │ ├── InputListener.cs │ ├── PictureBoxEx.cs │ ├── ViewPort.cs │ └── Viewer_Loop.cs ├── Connect.Designer.cs ├── Connect.cs ├── Connect.resx ├── DesktopSharing_Viewer.csproj ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── publickey.xml ├── Desktop_Sharing_Shared ├── Bitmap_Helper.cs ├── Compression │ └── Zip.cs ├── Desktop │ ├── DesktopHandle.cs │ ├── DesktopInfo.cs │ ├── PInvoke.cs │ └── StationHandle.cs ├── Desktop_Sharing_Shared.csproj ├── Keyboard │ └── PInvoke.cs ├── Message_Types.cs ├── Mouse │ ├── DeviceHandle.cs │ ├── IconHandle.cs │ ├── IconHandleInfo.cs │ ├── MouseCapture.cs │ └── PInvoke.cs ├── Properties │ └── AssemblyInfo.cs ├── Screen │ ├── BitmapHandle.cs │ ├── PInvoke.cs │ ├── Raw_Image.cs │ └── ScreenCapture.cs └── Utilities │ ├── Copy.cs │ └── Format_Bytes.cs ├── Key_Generator ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Key_Generator.csproj ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Pipes ├── Class2.cs ├── IDesktopService_API.cs ├── Pipes.csproj ├── Properties │ └── AssemblyInfo.cs └── Receiver.cs ├── README.md ├── SSLTcp ├── Message.cs ├── Properties │ └── AssemblyInfo.cs ├── SecureTcp.csproj ├── Secure_Stream.cs ├── Secure_Tcp_Client.cs ├── Secure_Tcp_Listener.cs ├── TCP_Server.cs └── Utilities.cs └── Server_System_Tray ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings └── Server_System_Tray.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/.gitignore -------------------------------------------------------------------------------- /DesktopSharing.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing.suo -------------------------------------------------------------------------------- /DesktopSharingStarter/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharingStarter/App.config -------------------------------------------------------------------------------- /DesktopSharingStarter/DesktopSharingServiceMonitor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharingStarter/DesktopSharingServiceMonitor.csproj -------------------------------------------------------------------------------- /DesktopSharingStarter/DesktopSharingServiceMonitor.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharingStarter/DesktopSharingServiceMonitor.csproj.user -------------------------------------------------------------------------------- /DesktopSharingStarter/Installer1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharingStarter/Installer1.Designer.cs -------------------------------------------------------------------------------- /DesktopSharingStarter/Installer1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharingStarter/Installer1.cs -------------------------------------------------------------------------------- /DesktopSharingStarter/Installer1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharingStarter/Installer1.resx -------------------------------------------------------------------------------- /DesktopSharingStarter/Interactive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharingStarter/Interactive.cs -------------------------------------------------------------------------------- /DesktopSharingStarter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharingStarter/Program.cs -------------------------------------------------------------------------------- /DesktopSharingStarter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharingStarter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DesktopSharingStarter/Service1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharingStarter/Service1.cs -------------------------------------------------------------------------------- /DesktopSharingStarter/Service1.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharingStarter/Service1.designer.cs -------------------------------------------------------------------------------- /DesktopSharingStarter/Toolkit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharingStarter/Toolkit.cs -------------------------------------------------------------------------------- /DesktopSharing_Server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Server.sln -------------------------------------------------------------------------------- /DesktopSharing_Server.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Server.suo -------------------------------------------------------------------------------- /DesktopSharing_Server.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Server.v12.suo -------------------------------------------------------------------------------- /DesktopSharing_Server/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Server/App.config -------------------------------------------------------------------------------- /DesktopSharing_Server/AppIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Server/AppIcon.ico -------------------------------------------------------------------------------- /DesktopSharing_Server/DesktopService_API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Server/DesktopService_API.cs -------------------------------------------------------------------------------- /DesktopSharing_Server/DesktopSharing_Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Server/DesktopSharing_Server.csproj -------------------------------------------------------------------------------- /DesktopSharing_Server/Desktop_Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Server/Desktop_Service.cs -------------------------------------------------------------------------------- /DesktopSharing_Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Server/Program.cs -------------------------------------------------------------------------------- /DesktopSharing_Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Server/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DesktopSharing_Server/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Server/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DesktopSharing_Server/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Server/Properties/Resources.resx -------------------------------------------------------------------------------- /DesktopSharing_Server/ScreenCaptureService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Server/ScreenCaptureService.cs -------------------------------------------------------------------------------- /DesktopSharing_Server/privatekey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Server/privatekey.xml -------------------------------------------------------------------------------- /DesktopSharing_Viewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer.sln -------------------------------------------------------------------------------- /DesktopSharing_Viewer.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer.v12.suo -------------------------------------------------------------------------------- /DesktopSharing_Viewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/App.config -------------------------------------------------------------------------------- /DesktopSharing_Viewer/Code/InputListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/Code/InputListener.cs -------------------------------------------------------------------------------- /DesktopSharing_Viewer/Code/PictureBoxEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/Code/PictureBoxEx.cs -------------------------------------------------------------------------------- /DesktopSharing_Viewer/Code/ViewPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/Code/ViewPort.cs -------------------------------------------------------------------------------- /DesktopSharing_Viewer/Code/Viewer_Loop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/Code/Viewer_Loop.cs -------------------------------------------------------------------------------- /DesktopSharing_Viewer/Connect.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/Connect.Designer.cs -------------------------------------------------------------------------------- /DesktopSharing_Viewer/Connect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/Connect.cs -------------------------------------------------------------------------------- /DesktopSharing_Viewer/Connect.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/Connect.resx -------------------------------------------------------------------------------- /DesktopSharing_Viewer/DesktopSharing_Viewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/DesktopSharing_Viewer.csproj -------------------------------------------------------------------------------- /DesktopSharing_Viewer/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/Form1.Designer.cs -------------------------------------------------------------------------------- /DesktopSharing_Viewer/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/Form1.cs -------------------------------------------------------------------------------- /DesktopSharing_Viewer/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/Form1.resx -------------------------------------------------------------------------------- /DesktopSharing_Viewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/Program.cs -------------------------------------------------------------------------------- /DesktopSharing_Viewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DesktopSharing_Viewer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DesktopSharing_Viewer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/Properties/Resources.resx -------------------------------------------------------------------------------- /DesktopSharing_Viewer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /DesktopSharing_Viewer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/Properties/Settings.settings -------------------------------------------------------------------------------- /DesktopSharing_Viewer/publickey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/DesktopSharing_Viewer/publickey.xml -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Bitmap_Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Bitmap_Helper.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Compression/Zip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Compression/Zip.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Desktop/DesktopHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Desktop/DesktopHandle.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Desktop/DesktopInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Desktop/DesktopInfo.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Desktop/PInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Desktop/PInvoke.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Desktop/StationHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Desktop/StationHandle.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Desktop_Sharing_Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Desktop_Sharing_Shared.csproj -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Keyboard/PInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Keyboard/PInvoke.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Message_Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Message_Types.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Mouse/DeviceHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Mouse/DeviceHandle.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Mouse/IconHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Mouse/IconHandle.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Mouse/IconHandleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Mouse/IconHandleInfo.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Mouse/MouseCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Mouse/MouseCapture.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Mouse/PInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Mouse/PInvoke.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Screen/BitmapHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Screen/BitmapHandle.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Screen/PInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Screen/PInvoke.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Screen/Raw_Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Screen/Raw_Image.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Screen/ScreenCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Screen/ScreenCapture.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Utilities/Copy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Utilities/Copy.cs -------------------------------------------------------------------------------- /Desktop_Sharing_Shared/Utilities/Format_Bytes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Desktop_Sharing_Shared/Utilities/Format_Bytes.cs -------------------------------------------------------------------------------- /Key_Generator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Key_Generator/App.config -------------------------------------------------------------------------------- /Key_Generator/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Key_Generator/Form1.Designer.cs -------------------------------------------------------------------------------- /Key_Generator/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Key_Generator/Form1.cs -------------------------------------------------------------------------------- /Key_Generator/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Key_Generator/Form1.resx -------------------------------------------------------------------------------- /Key_Generator/Key_Generator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Key_Generator/Key_Generator.csproj -------------------------------------------------------------------------------- /Key_Generator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Key_Generator/Program.cs -------------------------------------------------------------------------------- /Key_Generator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Key_Generator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Key_Generator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Key_Generator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Key_Generator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Key_Generator/Properties/Resources.resx -------------------------------------------------------------------------------- /Key_Generator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Key_Generator/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Key_Generator/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Key_Generator/Properties/Settings.settings -------------------------------------------------------------------------------- /Pipes/Class2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Pipes/Class2.cs -------------------------------------------------------------------------------- /Pipes/IDesktopService_API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Pipes/IDesktopService_API.cs -------------------------------------------------------------------------------- /Pipes/Pipes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Pipes/Pipes.csproj -------------------------------------------------------------------------------- /Pipes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Pipes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Pipes/Receiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Pipes/Receiver.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/README.md -------------------------------------------------------------------------------- /SSLTcp/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/SSLTcp/Message.cs -------------------------------------------------------------------------------- /SSLTcp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/SSLTcp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SSLTcp/SecureTcp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/SSLTcp/SecureTcp.csproj -------------------------------------------------------------------------------- /SSLTcp/Secure_Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/SSLTcp/Secure_Stream.cs -------------------------------------------------------------------------------- /SSLTcp/Secure_Tcp_Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/SSLTcp/Secure_Tcp_Client.cs -------------------------------------------------------------------------------- /SSLTcp/Secure_Tcp_Listener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/SSLTcp/Secure_Tcp_Listener.cs -------------------------------------------------------------------------------- /SSLTcp/TCP_Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/SSLTcp/TCP_Server.cs -------------------------------------------------------------------------------- /SSLTcp/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/SSLTcp/Utilities.cs -------------------------------------------------------------------------------- /Server_System_Tray/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Server_System_Tray/App.config -------------------------------------------------------------------------------- /Server_System_Tray/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Server_System_Tray/Form1.Designer.cs -------------------------------------------------------------------------------- /Server_System_Tray/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Server_System_Tray/Form1.cs -------------------------------------------------------------------------------- /Server_System_Tray/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Server_System_Tray/Program.cs -------------------------------------------------------------------------------- /Server_System_Tray/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Server_System_Tray/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Server_System_Tray/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Server_System_Tray/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Server_System_Tray/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Server_System_Tray/Properties/Resources.resx -------------------------------------------------------------------------------- /Server_System_Tray/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Server_System_Tray/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Server_System_Tray/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Server_System_Tray/Properties/Settings.settings -------------------------------------------------------------------------------- /Server_System_Tray/Server_System_Tray.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smasherprog/Desktop_Sharing/HEAD/Server_System_Tray/Server_System_Tray.csproj --------------------------------------------------------------------------------