CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Join Date
    Jun 2004
    Posts
    7

    Using SSL through C++ application

    Hi !

    A client app requests service from a server. A C++ app runs on the client machine.On the server side,java libraries are used to open SSL connection for encrypted data transmission. What needs to be done on the client side to use SSL using the C++ dll ?

    Thanks

  2. #2
    Join Date
    Aug 2001
    Location
    Stockholm, Sweden
    Posts
    1,664
    Your question is a bit vague to be fully answered. What do you mean by saying "using the C++ DLL"? Is it your program that runs on the client (ie. do you have the source code)? Do you know / have full control of the application protocol?

    Your C++ client app can "talk" SSL by using either Windows' Schannel API or the free OpenSSL library (www.openssl.org).

    Again, I don't know if this is the answer to your question. If not, please provide us with more info.

  3. #3
    Join Date
    Feb 2002
    Posts
    5,757
    Check out OpenSSL.

    Kuphryn

  4. #4
    Join Date
    May 1999
    Location
    ALABAMA, USA
    Posts
    9,917
    Originally posted by kuphryn
    Check out OpenSSL.
    I thought that was already suggested.
    Originally posted by j0nas
    Your C++ client app can "talk" SSL by using either Windows' Schannel API or the free OpenSSL library (www.openssl.org).
    There are only 10 types of people in the world:
    Those who understand binary and those who do not.

  5. #5
    Join Date
    Jun 2004
    Posts
    7

    Using openssl from a C++ application on win32

    Hi !

    The binary distribution downloaded from openssl contains header files in include directory and exe in bin directory.

    How do I use these files from a C++ application ? Can I directly include the exe available in bin? For example, what does the openssl.exe do ?

    I want to create a SSL connection from a C++ application on a client machine.

    Any help on this will be very much appreciated!

  6. #6
    Join Date
    May 2000
    Location
    KY, USA
    Posts
    18,652
    [ Merged threads ]


    bluescode, please stop cross-posting your questions to different forums. Thank you very much.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured