Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Encrypting password for email
#11
Now don't need to replace ___EMAILACCOUNT.

Macro Encrypted password generator
Code:
Copy      Help
;Change myEncryptionKey.
;Also you can encrypt this macro.

;g1
str password
if(!inp(password "Encrypted password will be stored in the clipboard." "Password" "*")) ret
if(password.len<6) mes "min 6 characters" "" "i"; goto g1
str encryptedPassword.encrypt(1|4 password "myEncryptionKey")
encryptedPassword.setclip

Macro Test encrypted password
Code:
Copy      Help
;Change myEncryptionKey to match that in "Encrypted password generator".
;Also you can encrypt this macro.

str encryptedPassword="kkdodhfifpfpdkshgkd" ;;paste the result of macro "Encrypted password generator"

str password.decrypt(1|4 encryptedPassword "myEncryptionKey")
_s=
F
;...
;smtp_password !{password}
;...
SendMail "email" "subject" "text" 0 "" "" "" "" "" _s


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)