CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 2006
    Posts
    94

    Question External password encryption program

    The build tool I am using has a telnet server and password encryption algorithm built in. However, the password encryption program has to be ran separately. For example, if I wanted my password "temppass" to be encrypted, I would have to manually get its encryption string by typing in a Windows cmd:

    Code:
    C:\> encryptapp
    C:\> Enter the password to be encrypted: temppass
    C:\> The encrypted password is "ab1cd2ef3"
    My question is, if I made a UI in Visual C++, how can I call this encryption algorithm in the code for a button, and be able to save the encrypted string?
    "My software doesn't have bugs, it just develops random features."

  2. #2
    Join Date
    Feb 2002
    Posts
    5,757

    Re: External password encryption program

    good example

    console redirector

    http://www.codeproject.com/threads/consolepipe.asp

    Kuphryn

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