faustf Posted October 17, 2018 Author Share Posted October 17, 2018 Local $hFileOpen = FileOpen (@ScriptDir & "\keypress.txt", $FO_APPEND) FileWrite($hFileOpen, _Crypt_EncryptData($sData, $sUserKey, $CALG_AES_256)) Link to comment Share on other sites More sharing options...
faustf Posted October 17, 2018 Author Share Posted October 17, 2018 (edited) but why if i set a "@crlf" FileWrite($hFileOpen, _Crypt_EncryptData($sData, $sUserKey, $CALG_AES_256)&@crlf) not work and write me 0x33912F0E83CBE49CC86B8A1A8AD4A8DF3ADDBCBBFB033A02A35421B56608CCB0E54B174FE3B2FC859CDEF14D770220C2A1B9450D343131D0E3742A7CA81266274927D15903008EF04834FD0398E0D9FEC171CC4E64791AB3F954F5E3BC69A8DDF581A810942C5F3AF506C003E4A20DC6 and when work write me like this 鄳ฯ쮃鳤毈풊��뮼ϻȺ咣딡ࡦ냌䯥众닣藼�䷱ɷ술릡ㄴ퀱瓣簪ከ❦❉姑㑈Ͻﻙ燁仌祤댚哹榼�臵ႨⲔ㩟۵πꋤ옍 Edited October 17, 2018 by faustf Link to comment Share on other sites More sharing options...
caramen Posted October 17, 2018 Share Posted October 17, 2018 What is the question ? My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki Link to comment Share on other sites More sharing options...
faustf Posted October 17, 2018 Author Share Posted October 17, 2018 (edited) why if insert after Encrypt a return, the encrypt file change ? Edited October 17, 2018 by faustf Link to comment Share on other sites More sharing options...
caramen Posted October 17, 2018 Share Posted October 17, 2018 It is not the return it is the & never noticed that.... i ll try more tomorow. My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki Link to comment Share on other sites More sharing options...
faustf Posted October 17, 2018 Author Share Posted October 17, 2018 ok Bro thank for the support , will continue to go crazy have good night Link to comment Share on other sites More sharing options...
BrewManNH Posted October 18, 2018 Share Posted October 18, 2018 You're turning a binary string into a regular string when you add @CRLF to it. The first string is the binary representation of the string in ASC and the second one is the string as a binary string. Why are you adding the CRLF to the end of your encrypted data? You'll never be able to decrypt it without manipulating the data, so just don't do 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 GudeHow 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 More sharing options...
caramen Posted October 18, 2018 Share Posted October 18, 2018 $test = FileWrite($hFileOpen, ""&_Crypt_EncryptData($sData, $sUserKey, $CALG_AES_256)) It is'nt the Carriage return it is the ampersand But i bet anyway that is count as a non null charactere that is not binary. And you cannot mix them together exept in a ini file. I presume ? My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki Link to comment Share on other sites More sharing options...
faustf Posted October 18, 2018 Author Share Posted October 18, 2018 ok i understund is not possible to do mmmm Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now