Encrypt() v0.6
Encrypt() uses my custom algorithm SM_UniquePmt() to encrypt/ decrypt strings/
Calling -
- Encrypt(text, password) - returns the encrypted text
- Decrypt(text, password) - returns the decrypted text
FEATURES -
* SAME KEY (PASSWORD) FOR ENCRYPTION AND DECRYPTION
* ENCRYPTED STRING IS POWERFUL BUT OF SAME SIZE AS STRING
* PASSWORDS CAN BE CASE-SENSITIVE AND ALPHA-NUMERIC THUS SECURE AND EASY TO REMEMBER
* STRING'S CASE IS CONSERVED THROUGH THE PROCESS
Examples (MUST) -
msgbox,% var1 := Encrypt("AutoHotkey_l", "lexikos") ;<-- ENCRYPT "AutoHotkey_l" with pwd "lexikos" msgbox,% Decrypt(var1, "lexIkos") ;<--- Password problem. I is capital in lexikos msgbox,% Decrypt(var1, "lexiko") ;<--- s missing and you r dead msgbox,% Decrypt(var1, "lexikos") ;<--- Perfect password , perfect result
New in this version -
* PASSWORDS CAN BE NOW CASE-SENSITIVE AND ALPHA-NUMERIC THUS SECURE AND EASY TO REMEMBER * STRING'S CASE IS NOW CONSERVED THROUGH THE PROCESS * MORE CHARACTER SUPPORT(2x) , MORE POWERFUL
CHALLENGE
<Removed> Should be a waste of time. Easy, small but good ones will be posted with next version.
DOWNLOAD Encrypt()
View Encrypt() History - Important for downloading older versions (Use the Browse code button)
Requires Scientific Maths Lib