CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 05:40:52 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=a1a588490243b1968506a87e16fd35974a229589f50d96d66baff2c5720025d5a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22EN5NQ7nrqh3TbHSkXZOH6aTpCm5nmX_W%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d443d47b537679-BLR
Rot13 implementation in AutoIt - Pastebin.com
SHARE
TWEET

Rot13 implementation in AutoIt
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <MsgBoxConstants.au3>
- #include <StringConstants.au3>
- Example()
- Func Example()
- Local $sEncoded = Rot13('Rotate this string.') ; Encode the string.
- MsgBox($MB_SYSTEMMODAL, '', 'Encoded: ' & $sEncoded)
- Local $sDecoded = Rot13($sEncoded) ; Decode the rotated string.
- MsgBox($MB_SYSTEMMODAL, '', 'Decoded: ' & $sDecoded)
- EndFunc ;==>Example
- Func Rot13($sData)
- If $sData == '' Then
- Return $sData
- EndIf
- Local $aArray = StringToASCIIArray($sData)
- For $i = 0 To UBound($aArray) - 1
- If ($aArray[$i] >= 65 And $aArray[$i] <= 77) Or ($aArray[$i] >= 97 And $aArray[$i] <= 109) Then
- $aArray[$i] += 13
- ElseIf ($aArray[$i] >= 78 And $aArray[$i] <= 90) Or ($aArray[$i] >= 110 And $aArray[$i] <= 122) Then
- $aArray[$i] -= 13
- EndIf
- Next
- Return StringFromASCIIArray($aArray)
- EndFunc ;==>Rot13
Tags:
AutoIT
Advertisement
Add Comment
Please, Sign In to add comment
-
✅ Make $2500 in 20 minutes⭐⭐⭐ D
JavaScript | 8 sec ago | 0.25 KB
-
⭐✅ Marketplace Glitch ✅ Working ✅ NEVER SEEN...
JavaScript | 36 sec ago | 0.25 KB
-
📌 Swapzone +37% glitch
JavaScript | 42 sec ago | 0.24 KB
-
✅⭐ Make huge profits on trading ⭐⭐ 9
JavaScript | 45 sec ago | 0.25 KB
-
⭐✅ Exploit 2500$ in 15 Minutes⭐⭐⭐ Y
JavaScript | 46 sec ago | 0.25 KB
-
💵 Make 3000$ in 20 minutes 💵
JavaScript | 52 sec ago | 0.24 KB
-
⭐✅ Marketplace Glitch ✅ Working ✅ NEVER SEEN...
JavaScript | 53 sec ago | 0.25 KB
-
Free Crypto Method (NEVER SEEN BEFORE)⭐⭐ A
JavaScript | 55 sec ago | 0.25 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand