472,805 Members | 851 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,805 software developers and data experts.

HOW: SSL/SSH connection ??

Hi,

I have a project to do, that has to transfer files over SSL/SSH
connection.(FTP over SSL or some other method)
I searched a lot but didn't find anything usefull :((

Has anyone any clues how to do that ??

Thank you.
Kris

Nov 17 '05 #1
9 5204
Can you explain a little bit more?

"Kristijan Marin" <kr*************@hermes-plus.si> a écrit dans le message
de news: ef**************@TK2MSFTNGP12.phx.gbl...
Hi,

I have a project to do, that has to transfer files over SSL/SSH
connection.(FTP over SSL or some other method)
I searched a lot but didn't find anything usefull :((

Has anyone any clues how to do that ??

Thank you.
Kris

Nov 17 '05 #2
Hi,

Well I need to create an app that will transfer files from one computer to
another.
I need to use these two protocols : FTP, SSH./SSL

I know how to do it for FTP ( i use CFtpConnection) but don't have a clue
how
can I achieve that using SSL/SSH.

I saw some "FTP over SSH/SSL" notes but none was of any use.

I don't even know where to start ..... do I have to transfer files in SSL
byte by byte ?
Do I need client-server application or can I create only my client and the
system takes over on the other side. I don't know. Never did anything with
SSL.

My program will be run from Windows platform.

Or is there any other option to do it like CFTConnection does it.

Thanks a lot for help.

Kris

"Benoit" <no****@forspam.com> wrote in message
news:eG**************@tk2msftngp13.phx.gbl...
Can you explain a little bit more?

"Kristijan Marin" <kr*************@hermes-plus.si> a écrit dans le message
de news: ef**************@TK2MSFTNGP12.phx.gbl...
Hi,

I have a project to do, that has to transfer files over SSL/SSH
connection.(FTP over SSL or some other method)
I searched a lot but didn't find anything usefull :((

Has anyone any clues how to do that ??

Thank you.
Kris


Nov 17 '05 #3
> I have a project to do, that has to transfer files over SSL/SSH
connection.(FTP over SSL or some other method)
I searched a lot but didn't find anything usefull :((

SFTP might be what you are looking for (its FTP over SSH I think)
Nov 17 '05 #4
SSL/SSH is not a protocole to send files, it is a way to encryp stream and
dercryp the stream side server. And it is SSL or SSH.
Y can not really send a file with SSL/SSh, you can send a file by FTP encryp
by SSL or by SSh.
For SSL, did you try to put a url like "ftps://" (means ftp+ssl)
For SSH, the best thing it is to use a third application (nammed ssh
agent )like putty as FilleZilla (open source projet)does but I think it is
more expensive in time.


"Kristijan Marin" <kr*************@hermes-plus.si> a écrit dans le message
de news: eK**************@TK2MSFTNGP09.phx.gbl...
Hi,

Well I need to create an app that will transfer files from one computer to
another.
I need to use these two protocols : FTP, SSH./SSL

I know how to do it for FTP ( i use CFtpConnection) but don't have a clue
how
can I achieve that using SSL/SSH.

I saw some "FTP over SSH/SSL" notes but none was of any use.

I don't even know where to start ..... do I have to transfer files in SSL
byte by byte ?
Do I need client-server application or can I create only my client and the
system takes over on the other side. I don't know. Never did anything with
SSL.

My program will be run from Windows platform.

Or is there any other option to do it like CFTConnection does it.

Thanks a lot for help.

Kris

"Benoit" <no****@forspam.com> wrote in message
news:eG**************@tk2msftngp13.phx.gbl...
Can you explain a little bit more?

"Kristijan Marin" <kr*************@hermes-plus.si> a écrit dans le
message de news: ef**************@TK2MSFTNGP12.phx.gbl...
Hi,

I have a project to do, that has to transfer files over SSL/SSH
connection.(FTP over SSL or some other method)
I searched a lot but didn't find anything usefull :((

Has anyone any clues how to do that ??

Thank you.
Kris



Nov 17 '05 #5
Kristijan Marin wrote:
Hi,

I have a project to do, that has to transfer files over SSL/SSH
connection.(FTP over SSL or some other method)
I searched a lot but didn't find anything usefull :((

Has anyone any clues how to do that ??


A couple of resources:

www.openssl.org

OpenSSL is an open source library that provides SSL/SSH facilities.

http://msdn.microsoft.com/library/de...urity/sspi.asp

SSPI is the part of the Windows Platform SDK that you'd use to build and SSH
program using the built-in Windows security providers.

http://en.wikipedia.org/wiki/SSH_file_transfer_protocol

A description of SFTP. SFTP is a file transfer protocol that operates
through an SSH tunnel. It's not really related to FTP.

http://winscp.net/eng/index.php

WinSCP is an open-source SFTP client for Windows.

http://en.wikipedia.org/wiki/FTPS

FTPS is standard FTP over an SSL connection.

http://www.ford-hutchinson.com/~fh-1-pfh/ftps-ext.html

Some up to date references on ftps.

And finally

www.google.com

where you could have found all of the above yourself with a few keystrokes
and a mouse-click or two.

-cd
Nov 17 '05 #6
SSL and SSH are different thing. SSH uses SSL to secure/encrypt data.

There is no quick and easy way to programmatically implement secure
communication in Windows. Implementing secure communication using SSL in
C/C++ requires a lot of work and a good understand of SSL but the effort is
worthed it because there are still not many programmers who can write secure
programs. O'Reily has a very good SSL book. The book also has sample codes on
how to implement secure communication with SSL.

Traditionally, SSH is for Unix based systems but there is also a free SSH
client that works in Windows. It's called PUTTY. However, PUTTY only
implements the client side of SSH (ie. you can only initiate secure
communication to a secure server).

Although SFTP has commands that look like the traditional FTP command, under
the hood SFTP and FTP are completely different. You cannot take a ftp program
and change it to a SFTP program without major rewriting the code.

Implementing secure communication is much easier in Java because there are a
lot of built-in classes for secure communication in Java.

In short, you have to do a lot of study before you can write production
grade SSL programs in C/C++.

"Kristijan Marin" wrote:
Hi,

I have a project to do, that has to transfer files over SSL/SSH
connection.(FTP over SSL or some other method)
I searched a lot but didn't find anything usefull :((

Has anyone any clues how to do that ??

Thank you.
Kris

Nov 17 '05 #7
> There is no quick and easy way to programmatically
implement secure communication in Windows.


It might not be overly quick to implement these features
on the Windows platform but it is not that difficult.

Use OpenSSL for SSL:

http://www.openssl.org/

and OpenSSH for SSH:

http://www.openssh.com/

That is exactly how the Zeus for Windows editor implements
secure FTP over SSH and SSL:

http://www.zeusedit.com/lookmain.html

Jussi Jumppanen
Author: Zeus for Windows

Nov 17 '05 #8
I have not heard of Zeus Editor before but I did checked it out briefly after
you mentioned it. My first impression of the product is very good, it has a
lot of features. However, I cannot find the secure ftp feature that you
talked about. After snooping around a bit, I can only find the support for
file transfer over ftp and http. I also failed to get the editor to connect
to a ssh server. I did see the openssl dll libeay32.dll and ssleay32.dll in
the zeus program folder.

anyway, if a programmer can write feature rich programs like Zeus editor,
he/she should not have much trouble writing programs that support secure
communication.

Good job on the editor.

"ju****@zeusedit.com" wrote:
There is no quick and easy way to programmatically
implement secure communication in Windows.


It might not be overly quick to implement these features
on the Windows platform but it is not that difficult.

Use OpenSSL for SSL:

http://www.openssl.org/

and OpenSSH for SSH:

http://www.openssh.com/

That is exactly how the Zeus for Windows editor implements
secure FTP over SSH and SSL:

http://www.zeusedit.com/lookmain.html

Jussi Jumppanen
Author: Zeus for Windows

Nov 17 '05 #9
> My first impression of the product is very good

Thank you :)
However, I cannot find the secure ftp feature that
you talked about.
You will have noticed FTP editing is done using the "File,
FTP" menu.

Now when a file is opened the server name is detemined by
splitting the ftp file name. Zeus then uses the server name
to determine the type of connection required.

But if no server details have been defined Zeus resorts to
the standard FTP protocol with a logon prompt.

So to answer your question, the reason the connection was
only FTP is because the server name was not known to Zeus.

To define a server use the "Options, Editor Options" menu
and in the "FTP Hosts" panel just define the server and
select the required SSL/SSH/TLS protocol.

For example if this is the FTP file name:

ftp://ftp.microsoft.com/example/index.html

the server name would be:

ftp.microsoft.com

There are more details on defining servers in the Zeus
online help. Just search for "ftp".
Good job on the editor.


Thanks again :)

Jussi Jumppanen
Author: Zeus for Windows Programmer's Editor

Nov 17 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: ndsoumah | last post by:
hi all How can I make a database connection available to all the pages in my application? I tried doing it with session but it doesn't seem to work. here's what a did: start_session();
3
by: viviane lima - * - * - | last post by:
Also idea ? how to use ASP for working .DBF files ? Please help me .. thanks Vivian
6
by: charliewest | last post by:
I have developed an application for WM 2003, which frequently transacts with a sql server ce 2.0 database. I have several procedures which utilize the following code: cn = new...
6
by: Eric | last post by:
for example: SqlConnection is used in my project, how can I know if all connections were closed after open and execution. If some guys forget to close connections after using, how can i check it...
3
by: Martin | last post by:
Hi Group I apologize for this very basic (I guess) question. I had a look in the posts and on MSDN but don't know where to start. I'm grateful for any push in the right direction. I just don't...
6
by: Martin Eyles | last post by:
I have just turned on option strict in ASP/VB.net. I started by happily going through and setting up all of the Dim statements with As clauses, and making my cast explicit. However, I have now got...
6
by: Arsalan Ahmad | last post by:
Hi all, I am creating a website in which in an Item detail page there are a number of web controls (7 or 8) and what is happening that inside each of control's Page_Load() function I am creating...
22
Frinavale
by: Frinavale | last post by:
How To Use A Database In Your Program Many .NET solutions are database driven and so many of us often wonder how to access the database. To help you understand the answer to this question I've...
7
Merlin1857
by: Merlin1857 | last post by:
Its great producing data for users to look at in your web pages and generally that is sufficient for their needs but sometimes you may want to supply your user with the data in a form they can...
1
Curtis Rutland
by: Curtis Rutland | last post by:
How To Use A Database In Your Program Part II This article is intended to extend Frinny’s excellent article: How to Use a Database in Your Program. Frinny’s article defines the basic concepts...
0
by: erikbower65 | last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps: 1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal. 2. Connect to...
0
linyimin
by: linyimin | last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
0
by: kcodez | last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
0
by: Taofi | last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same This are my field names ID, Budgeted, Actual, Status and Differences ...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.