반응형
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- if(식)
- IfInString
- API
- EnvMult
- EnvSub
- ControlSend
- EnvAdd
- IF (식)
- IfWinExist
- 함수
- autohotkey
- SetMouseDelay
- StringGetPos
- SetTitleMatchMode
- if
- EnvSet
- SetKeyDelay
- 식
- EnvDiv
- 배열
- ControlGetText
- DetectHiddenWindows
- MouseClick
- Blocks
- SetEnv
- SetControlDelay
- Menu
- Threads
- Var:=식
- 식의 설명
Archives
- Today
- Total
ㄴrㅎnㅂrㄹrㄱi
암호 인코드 디코드 본문
반응형
passwd = "1334512345" ; 암호
Data = "codedata:http://infoki.net" ; 암호화 코드
Crypt_string := Crypt(Data, passwd)
MsgBox, %Crypt_string% ; 암호화된 문자
Decrypt_string := Decrypt(Data, Crypt_string)
MsgBox, %Decrypt_string% ; 암호 해독된 문자
;------------------------------------------------------------- ; 암호 인코드 디코드 ;------------------------------------------------------------- Crypt(Data,_string) { local f, r f := A_FormatInteger SetFormat Integer, H Loop Parse, _string { r .= Asc(A_LoopField) ^ Asc(SubStr(Data, A_Index, 1)) + 256 } StringReplace r, r, 0x1, , All StringUpper r, r SetFormat Integer, %f% Return r } ; copy clear password, hit Ctrl+Alt+k to get in clipboard the encrypted
; string to paste in the script ; ^!k:: Clipboard := Crypt(Clipboard) Decrypt(Data,_string) { local d, r d := RegExReplace(_string, "..", "0x$0!") StringTrimRight d, d, 1 Loop Parse, d, ! { r .= Chr((A_LoopField + 0) ^ Asc(SubStr(Data, A_Index, 1))) } Return r }
반응형
'AUTOHOTKEY > 스크립트' 카테고리의 다른 글
DllCall: Basic FTP Functions (0) | 2007.10.29 |
---|---|
이미지파일을 HEX 변환 생성하는 프로그램 (0) | 2007.10.24 |
숫자에 콤마 찍기 (0) | 2007.10.23 |
SplashText Sizer - WYSIWYG (0) | 2007.10.23 |
SplashImage Maker - WYSIWYG (0) | 2007.10.23 |
Comments