네트워커의 보안 티스토리

;출처: 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% 




/*


평문으로 저장되는 로그값 같은 것들을 간단하게 암호화할 수 있음.




*/