오토핫키
[오토핫키] XOR 암호화/복호화 예제
징쟝
2018. 4. 18. 17:43
;출처: http://www.autohotkey.co.kr/cgi/board.php?bo_table=script&wr_id=1650
exampleText := "동해물과 백두산이 마르고 닳도록`nDo you know encryption?"
msgbox, % "<원문>`n" exampleText "`n`n<암호문>`n" encrypt(exampleText) "`n`n<복호문>`n" encrypt(encrypt(exampleText))
Return
encrypt(text)
{
String =
Loop, parse, text
{
char := Asc(A_LoopField)^Asc("1")^Asc("2")
String .= "`" . chr(Char)
}
Return, %String%
}
/*
평문으로 저장되는 로그값 같은 것들을 간단하게 암호화할 수 있음.
*/