Jump to content

Encrytion Help


niftyapple
 Share

Recommended Posts

Hey everyone!

I was just trying to perfect my encryption skills and I think I have confused myself more than done any good.

Been trying to follow the documentation given by the SCITE editor(you will see that I copied a lot of this from that directly to avoid making mistakes) but I cant get the decrypt process to work.

My test code I hope to use as proof of concept to store an encrypted password in a file for retrieval and decryption then use later on. Here is what I have so far.

I put some _ArrayDisplay's in to see the encryption process at work through its various stages, but as you can tell by running this, the last array display after attempting to decrypt, it doesnt turn out as the original array.
 

Help?!

#include <Crypt.au3>
#include <File.au3>
#include <Array.au3>
 
Local $aStringsToEncrypt[6] = ["AutoIt", "SciTE", "Crypt", ".au3", 42, "42"]
Local $test[6]
Local $hKey = _Crypt_DeriveKey("CryptPassword", $CALG_RC4) ; Declare a password string and algorithm to create a cryptographic key.

For $i = 0 to 5
   $test[$i] = _Crypt_EncryptData($aStringsToEncrypt[$i], $hKey, $CALG_USERKEY)
Next

_ArrayDisplay($test)

_FileWriteFromArray(@DesktopDir & "\encrypt.txt", $test)
;~ ----------------------
Local $test2
_FileReadToArray(@DesktopDir & "\enc.txt", $test2)

_ArrayDisplay($test2)

;~ UnEncrypt test
Local $unenc[6]
For $i = 1 to 6
   $unenc[$i-1] = _Crypt_DecryptData($test2[$i], $hKey, $CALG_USERKEY)
Next

_ArrayDisplay($unenc)
Link to comment
Share on other sites

I'm not sure, but it appears you're writing to one file and reading from another.

_FileWriteFromArray(@DesktopDir & "\encrypt.txt", $test)
;~ ----------------------
Local $test2
_FileReadToArray(@DesktopDir & "\enc.txt", $test2)

The write is to encrypt.txt, the read is from enc.txt. Is that intentional?

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Woops, I did not mean to do that. I have updated it and here is the output of the 3rd display, still not the intended output.

 

[0]|0x4175746F4974
[1]|0x5363695445
[2]|0x4372797074
[3]|0x2E617533
[4]|0x2A000000
[5]|0x3432
 

Edited by niftyapple
Link to comment
Share on other sites

I missed this in your code the first time through, you need to change the following line.

; From this
$unenc[$i-1] = _Crypt_DecryptData($test2[$i], $hKey, $CALG_USERKEY)
; To this
$unenc[$i-1] = BinaryToString(_Crypt_DecryptData($test2[$i], $hKey, $CALG_USERKEY))

As the help file explains, the decrypted data is returned as a binary string, so you need to convert that string to the correct format with BinaryToString to be able to read it.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Ok, now I feel like I am just going to walk away from the keyboard for a while. >_<

I was playing with this last night, also getting frustrated but was converting with binarytostring. Not sure why, when I simplified the code, that I didnt put that in the "tech demo".

Thanks again, thats a winner.

Link to comment
Share on other sites

Glad I could help. :)

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

  • 1 month later...

I am not having the exact issue but what I am facing is that once I send the encrypted data over TCP it is not received in its original form. I can send the string over just fine but when it gets encrypted and sent it gets all jacked up. It looks like wingdings. Any thoughts?

Thanks!

Link to comment
Share on other sites

Take a look at my 2 screen shots and you will see what I am talking about. Keep in mind I am not trying to decrypt anything "YET" at the receiving end. I just want to see consistent data from point A to point B. 

The encrypted data being sent.

post-75726-0-12973400-1413377291.jpg

The same data received from TCP

post-75726-0-60542800-1413377309.jpg

Anyone have any thoughts?

Link to comment
Share on other sites

I figured it out. I tried converting the encrypted data to "StringToBinary" before sending it and it works now. Of course I have to do BinaryToString before decrypting and then BinaryToString after decrypting. I hope this helps someone later down the road.

Thanks!

Link to comment
Share on other sites

And don't forget to send UTF8 data so you receive UTF8 data! See options for said functions.

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...