CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Dec 2008
    Posts
    9

    HttpClient Question

    Hello,

    I'm not too familiar with the HttpClient library, but I've written a program that accesses a secure website (https) using the HttpClient library. It posts my login credentials, successfully logs in, and then returns the data that I need. My question is whether or not that is secure? In other words, are my login credentials encrypted as if I were to open up my browser, go to the website, and manually enter in my login credentials?

    Thanks.

  2. #2
    Join Date
    Jul 2008
    Posts
    70

    Re: HttpClient Question

    Yes.

    If your communicating with the website over https then all traffic is encrypted. It woudln't work otherwise.

    Hope that helps

  3. #3
    Join Date
    Dec 2008
    Posts
    9

    Re: HttpClient Question

    Quote Originally Posted by compavalanche View Post
    Yes.

    If your communicating with the website over https then all traffic is encrypted. It woudln't work otherwise.

    Hope that helps
    Definitely makes sense.

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