CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Feb 2003
    Location
    AR
    Posts
    228

    Question Help with decrypting algorithm

    I have several phrases encrypted and decrypted with the same password, and what I need is to found the password used to encrypt them.

    If anyone has an idea on how to implement this, or get an existing function to do so, please let me know. Thanks!

  2. #2
    Join Date
    Apr 2005
    Location
    Norway
    Posts
    3,934

    Re: Help with decrypting algorithm

    One solution is brute force. Try every single password until you hit the correct one.

    - petter

  3. #3
    Join Date
    Feb 2003
    Location
    AR
    Posts
    228

    Re: Help with decrypting algorithm

    But there should be a more effective way since I already have the decrypted strings... brute force would take long otherwise.

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