XOR暗号化の解読


20

あなたの仕事は、暗号化された文字列を入力として受け取り、解読された文字列を出力して、隠されたメッセージを明らかにすることです。

入力と出力の両方の文字列には、この64個のASCII文字のリストの文字が含まれます(先頭のスペースに注意してください)。

 !"#$%&'()*+,-./0123456789:;=?@[\]^_abcdefghijklmnopqrstuvwxyz|~

これらの文字には、上記の順序で番号が割り当てられます。

  ! " # $ % &   ...
0 1 2 3 4 5 6   ...

したがって、スペースは番号0、!番号1、~番号63です。これらの番号は、6ビットのバイナリコードで表すことができます。

 :  0:  000000
!:  1:  000001
":  2:  000010
#:  3:  000011 
.. ...  ......
z: 61:  111101
|: 62:  111110
~: 63:  111111

暗号化は非常に簡単です。

私が使用しますeC暗号化された文字のため、そしてC元の文字列の文字に。C(n)は、元の文字列eC(n)のn番目の文字であり、暗号化された文字列のn番目の文字です。

文字の6ビットバイナリ表現を使用します。最初の文字はになりますeC(0) = not(C(0))。そこから、すべてのキャラクターはになりますeC(n) = xor(C(n),C(n-1))

例:

入力文字列がであると仮定しましょうcode

  • c38番目の文字(インデックスがゼロ)、または100110バイナリです。暗号化されたバージョンでは、すべてのビットが反転しているため011001 -> 25 -> '9'、再びインデックスが付けられます。
  • o50番目の文字、または110010バイナリです。xor(100110, 110010) = 010100 = 20 = '4'
  • d39番目の文字、または100111バイナリです。xor(100111, 110010) = 010101 = 21 = '5'
  • e40番目の文字、または101000バイナリです。xor(101000, 100111) = 001111 = 15 = '/'

したがって、元の文字列がのcode場合、暗号化された文字列はになり945/ます。


テストケース:

945/
code

,&'8[14 =?;gp+% 2'@s&&c45/eg8?&
programming puzzles & code golf

;a$5$%0r?2@12dw6# lb-eg&519nt%ot=9$@es@96+?;ga" 4*)&ta56dp[?o#t%oh/"(&?#ee![,+,/+fe4"
a $150 reward will be given to those sending account and pin# to hackers@steal_id.com

~!#!'!#!/!#!'!#![!#!'!#!/!#!'!#!~!#!'!#!/!#!'!#![!#!'!#!/!#!'!#!
 !"#$%&'()*+,-./0123456789:;=?@[\]^_abcdefghijklmnopqrstuvwxyz|~

4
結婚生活とすでにメッセージのデコードで?:p
ジョナサンアラン

1
@JonathanAllan私は何年もメッセージをデコードしてきました...:P
Stewie Griffin

回答:


9

ゼリー27 26バイト

ØJḟ“<>`{}”ḟØAɓi@€_33^\96_ị

オンラインでお試しください!

代替バージョン、22バイト(非競合)

Jellyは最終的に他のゴルフラングに追いつき、印刷可能なASCIIアトムを取得したので、これで動作します。

ØṖḟ“<>`{}”ḟØAɓi@€’^\Nị

オンラインでお試しください!

使い方

ØJḟ“<>`{}”ḟØAɓi@€_33^\96_ị  Main link. Argument: s (string)

ØJ                          Yield Jelly's code page, i.e., 32 non-ASCII characters,
                            followed by all printable ASCII characters, followed by
                            129 non-ASCII characters.
  ḟ“<>`{}”                  Filterfalse; remove the characters "<>`{}".
          ḟØA               Filterfalse; remove all uppercase ASCII letters.
                            Let's call the resulting alphabet a.
             ɓ              Begin a new, dyadic chain.
                            Left argument: s. Right argument: a
              i@€           Find the (1-based) index of all characters of s in a.
                 _33        Subtract 33, so ' ' maps to 0, '~' maps to 63.
                    ^\      Compute the cumulative bitwise XOR.
                            We didn't take the bitwise NOT of the first index,
                            which can be rectified by subtracting all results from
                            63. However, we must also add 33 to account for the
                            fact that the index of ' ' in a is 33.
                      96_   Subtract the results from 96.
                         ị  Index into a.

うーん、私は最後の数分でこれを考えました!最初に説明を投稿してくれて恥ずかしい:p
ジョナサンアラン

6

JavaScript(ES6)、115バイト

s=>s.replace(/./g,s=>d[x^=d.indexOf(s)],x=63,d=` !"#$%&'()*+,-./0123456789:;=?@[\\]^_abcdefghijklmnopqrstuvwxyz|~`)

テストケース


^の右側に行くと思います]。答えは、私が信じているテストケースのその変更でも有効です。
ジョナサンアラン

d不足しているものから構築する方が短いでしょうか?
ジョナサンアラン

1
@JonathanAllanかもしれませんが、JSにはかなり長い文字操作メソッドがあります。以前の同様の課題で、単純なハードコードされた文字列よりも短い動的バージョンを使用することに失敗し、今回も成功しませんでした。
アーナルド

私はこれがjavascriptであることを知っていますが、まったく似ていないようです:S
Slava Knyazev

5

ゼリー 34  31 バイト

-3(使用デニスのおかげバイトではなく二回œ-;そして¤、使用する”~のではなく63

32r126Ọḟ“<>`{}”ḟØAṙ1ɓ”~;i@€^\Ḋị

文字のリストを取得して返すモナドリンク。
*注:ゼリープログラムへの入力引数の書式Python文字列を使用し、で引用ので"''''(または明確なノーを引用する場合)すべてのオプションです。

オンラインでお試しください!

どうやって?

ビット単位のxorは可逆です(「先行ゼロ」が与えられます)。

Bitwise-Notは「すべて1」のxorです。この場合、必要なのは6つだけなので、2 7 -1 = 63です。

配列または文字を作成し、入力文字のインデックスをルックアップすると、デコード自体はビット単位のxorによる単純な累積削減となり、その後、同じ配列にインデックスを戻すことができます。

32r126Ọḟ“<>`{}”ḟØAṙ1ɓ”~;i@€^\Ḋị - Main link: string, s
32r126                          - inclusive range -> [32,33,...,125,126]
      Ọ                         - cast to ordinals -> " !...}~"
        “<>`{}”                 - literal ['<','>','`','{','}']
       ḟ                        - filter discard
                ØA              - yield "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
               ḟ                - filter discard
                  ṙ1            - rotate left by one (Jelly indexing is one based)
                    ɓ           - dyadic chain separation, swapping arguments (call that p)
                     ”~         - literal '~'
                       ;        - concatenate with s (`~` has value 63 for the bitwise-not)
                        i@€     - first index* of €ach character of s in p
                            \   - cumulative reduce by:
                           ^    -   bitwise-xor
                             Ḋ  - dequeue (remove the 63 from '~')
                              ị - index into p

* 注: pでスペースを1検索すると64になりますが、pにインデックスを戻すことはモジュール式なので、リーディングを追加すると64を追加し、必要な場所にインデックスを戻すので大丈夫です)。


3

Java、225バイト

String D(String E){String A="",C=" !\"#$%&'()*+,-./0123456789:;=?@[\\]^_abcdefghijklmnopqrstuvwxyz|~";for(int i=-1,J=0;++i<E.length();J=C.indexOf(E.charAt(i)),A+=C.charAt(i<1?(1<<6)-1-J:C.indexOf(A.charAt(i-1))^J));return A;}

私は長い間Javaでゴルフをしていないので、ゴルフのヒントは大歓迎です。

オンラインでお試しください!


久しぶりですが、ゴルフにはいくつかのことがあります。Java8+ラムダを使用するString D(String E){と、E->{(-15バイト)になります。-1-Jことができます+~J(-1バイト)。そして、i=-1することができるi=0++に移動させることができi++<1?、次いでi-1なるi-2(-1バイト)。オンラインで試す:208バイト
Kevin Cruijssen

2

05AB1E、40バイト

'~«vžQAu"<>{}`"«SK©yk64+b¦S}r.gG^DJC®sè?

オンラインでお試しください!

説明

'~«                                       # append input to "~"
   v                                      # for each char y in the resulting string
    žQ                                    # push printable ascii chars
      Au                                  # push upper case alphabet
        "<>{}`"«                          # append "<>{}`"
                SK                        # remove those chars from printable ascii
                  ©                       # store a copy in register
                   yk                     # get the index of y in that string
                     64+                  # add 64
                        b                 # convert to binary
                         ¦S               # remove leading 1 and convert to list of bits
                           }              # end loop
                            r             # reverse stack
                             .gG          # len(stack)-1 times do
                                ^         # xor top 2 lists of bits on the stack
                                 DJC      # convert a copy to decimal
                                    ®sè   # index into the char string with this
                                       ?  # print

2

CPU x86命令セット、235バイト

00000750  50                push eax
00000751  8A10              mov dl,[eax]
00000753  80FA00            cmp dl,0x0
00000756  7418              jz 0x770
00000758  31DB              xor ebx,ebx
0000075A  EB03              jmp short 0x75f
0000075C  F9                stc
0000075D  EB13              jmp short 0x772
0000075F  8A83C1A14000      mov al,[ebx+0x40a1c1]
00000765  3C00              cmp al,0x0
00000767  74F3              jz 0x75c
00000769  38C2              cmp dl,al
0000076B  7404              jz 0x771
0000076D  43                inc ebx
0000076E  EBEF              jmp short 0x75f
00000770  42                inc edx
00000771  F8                clc
00000772  58                pop eax
00000773  C3                ret
00000774  53                push ebx
00000775  8B442408          mov eax,[esp+0x8]
00000779  31C9              xor ecx,ecx
0000077B  09C0              or eax,eax
0000077D  7505              jnz 0x784
0000077F  31C0              xor eax,eax
00000781  48                dec eax
00000782  EB2F              jmp short 0x7b3
00000784  E8C7FFFFFF        call 0x750
00000789  72F4              jc 0x77f
0000078B  7510              jnz 0x79d
0000078D  F6D3              not bl
0000078F  80E33F            and bl,0x3f
00000792  88D9              mov cl,bl
00000794  8AB3C1A14000      mov dh,[ebx+0x40a1c1]
0000079A  8830              mov [eax],dh
0000079C  40                inc eax
0000079D  E8AEFFFFFF        call 0x750
000007A2  72DB              jc 0x77f
000007A4  750D              jnz 0x7b3
000007A6  30D9              xor cl,bl
000007A8  8AB1C1A14000      mov dh,[ecx+0x40a1c1]
000007AE  8830              mov [eax],dh
000007B0  40                inc eax
000007B1  EBEA              jmp short 0x79d
000007B3  5B                pop ebx
000007B4  C20400            ret 0x4
000007B7  53                push ebx
000007B8  8B442408          mov eax,[esp+0x8]
000007BC  31C9              xor ecx,ecx
000007BE  09C0              or eax,eax
000007C0  7505              jnz 0x7c7
000007C2  31C0              xor eax,eax
000007C4  48                dec eax
000007C5  EB32              jmp short 0x7f9
000007C7  E884FFFFFF        call 0x750
000007CC  72F4              jc 0x7c2
000007CE  750F              jnz 0x7df
000007D0  30D9              xor cl,bl
000007D2  8AB1C1A14000      mov dh,[ecx+0x40a1c1]
000007D8  8830              mov [eax],dh
000007DA  88D9              mov cl,bl
000007DC  40                inc eax
000007DD  EBE8              jmp short 0x7c7
000007DF  8B442408          mov eax,[esp+0x8]
000007E3  E868FFFFFF        call 0x750
000007E8  72D8              jc 0x7c2
000007EA  750D              jnz 0x7f9
000007EC  F6D3              not bl
000007EE  80E33F            and bl,0x3f
000007F1  8AB3C1A14000      mov dh,[ebx+0x40a1c1]
000007F7  8830              mov [eax],dh
000007F9  5B                pop ebx
000007FA  C20400            ret 0x4

関数find()およびdeCript()+文字列abc:171バイト+ 64バイト= nasmwのアセンブリとBorland Cコンパイラのコンパイラ/ライブラリ:

; nasmw -fobj  this.asm
; bcc32 -v  this.obj
section _DATA use32 public class=DATA
global _main
extern _printf

fmt1 db "result=%s" , 13, 10, 0, 0
fmt2 db "abc[63]=%c" , 13, 10, 0, 0
code1 db "code" , 0, 0
code2 db ",&'8[14 =?;gp+% 2'@s&&c45/eg8?&" , 0, 0
code3 db ';a$5$%0r?2@12dw6# lb-eg&519nt%ot=9$@es@96+?;ga" 4*)&ta56dp[?o#t%oh/"(&?#ee![,+,/+fe4"' , 0, 0
abc db ' !"#$%' , "&'()*+,-./0123456789:;=?@[\]^_abcdefghijklmnopqrstuvwxyz|~" , 0, 0

section _TEXT use32 public class=CODE

find:     
      push    eax
      mov     dl,  [eax]
      cmp     dl,  0
      je      .2
      xor     ebx,  ebx
      jmp     short  .1
.e:   stc
      jmp     short  .z
.1:   mov     al,  [abc+ebx]
      cmp     al,  0
      je      .e
      cmp     dl,  al
      je      .3
      inc     ebx
      jmp     short  .1
.2:   inc     edx           ; set zf=0
.3:   clc
.z:   pop     eax
      ret

deCript:  
      push    ebx
      mov     eax,  dword[esp+8]
      xor     ecx,  ecx
      or      eax,  eax
      jnz     .1
.e:   xor     eax,  eax
      dec     eax
      jmp     short  .z
.1:   call    find
      jc      .e
      jnz     .2
      not     bl
      and     bl,  03Fh
      mov     cl,  bl
      mov     dh,  [abc+ebx]
      mov     [eax],  dh
      inc     eax
.2:   call    find
      jc      .e
      jnz     .z
      xor     cl,  bl
      mov     dh,  [abc+ecx]
      mov     [eax],  dh
      inc     eax
      jmp     short  .2
.z:       
      pop     ebx
      ret     4

cript:    
      push    ebx
      mov     eax,  dword[esp+8]
      xor     ecx,  ecx
      or      eax,  eax
      jnz     .1
.e:   xor     eax,  eax
      dec     eax
      jmp     short  .z
.1:   call    find
      jc      .e
      jnz     .2
      xor     cl,  bl
      mov     dh,  [abc+ecx]
      mov     [eax],  dh
      mov     cl,  bl
      inc     eax
      jmp     short  .1
.2:   mov     eax,  dword[esp+8]
      call    find
      jc      .e
      jnz     .z
      not     bl
      and     bl,  03Fh
      mov     dh,  [abc+ebx]
      mov     [eax],  dh
.z:       
      pop     ebx
      ret     4

_main:    
      pushad

      push    code1
      call    cript
      push    code1
      push    fmt1
      call    _printf
      add     esp,  8

      xor     eax,  eax
      mov     al,  [abc+63]
      push    eax
      push    fmt2
      call    _printf
      add     esp,  8

      push    code1
      call    deCript
      push    code1
      push    fmt1
      call    _printf
      add     esp,  8
      push    code2
      call    deCript
      push    code2
      push    fmt1
      call    _printf
      add     esp,  8
      push    code3
      call    deCript
      push    code3
      push    fmt1
      call    _printf
      add     esp,  8

      popad
      mov     eax,  0
      ret

結果:

result=945/
abc[63]=~
result=code
result=programming puzzles & code golf
result=a $150 reward will be given to those sending account and pin# to hackers@steal_id.com

アセンブリの方が良い(たとえば、私はマクロシステムを使用しているのは本当です、はい、それは長すぎますが、マクロシステムのC one +-のように、たとえば、命令が簡単なので真であるため、英語で書いて(Iではない)として修正する)


2

C(gcc)、153バイト

char*i=" !\"#$%&'()*+,-./0123456789:;=?@[\\]^_abcdefghijklmnopqrstuvwxyz|~";a(b){b=index(i,b)-i;}f(char*x){for(*x=i[a(*x)^63];x[1];)*x=i[a(*x)^a(*++x)];}

オンラインでお試しください!

わずかにゴルフが少ない

char*i=" !\"#$%&'()*+,-./0123456789:;=?@[\\]^_abcdefghijklmnopqrstuvwxyz|~";
a(b){
  b=index(i,b)-i;
}
f(char*x){
  for(*x=i[a(*x)^63];x[1];)
    *x=i[a(*x)^a(*++x)];
}

2

APL(Dyalog Unicode)、52 バイトSBCS

が必要です ⎕IO←0

{C[2∘⊥¨≠\~@0⊢(6/2)∘⊤¨⍵⍳⍨C←(32↓⎕UCS127)~⎕A,'<>{}`']}

オンラインでお試しください!



への参照が1つしかない場合、完全なプログラムへの変換により2バイトを節約できます。C[2⊥≠\⍉~@0⍉(6/2)⊤⍞⍳⍨C←(32↓⎕UCS⍳127)~⎕A,'<>{}`']
AdámFeb



1

PHP、103バイト

for($x=63;~$c=$argn[$i++];)echo($a=join(preg_grep("#[^A-Z<>`{}]#",range(" ","~"))))[$x^=strpos($a,$c)];

オンラインでお試しください!

PHP、107バイト

for($x=63;~$c=$argn[$i++];)echo($a=preg_filter("#[A-Z<>`{}]#","",join(range(" ","~"))))[$x^=strpos($a,$c)];

オンラインでお試しください!

PHP、118バイト

for($x=63;~$c=$argn[$i++];)echo($a=join(array_diff(range(" ","~"),range(A,Z),str_split("<>`{}"))))[$x^=strpos($a,$c)];

オンラインでお試しください!


1

Python + Numpy、214バイト

異なる純粋な数値アプローチを使用していますが、他のPythonソリューションと競合することはできません。

from numpy import *
def f(s):
    r=range
    A=array
    S=A(r(32,60)+[61,63,64]+r(91,96)+r(97,123)+[124,126])
    T=A(r(128))
    T[S]=A(r(64))
    W=T[fromstring(s,"b")]
    W[0]=~W[0]
    W=S[bitwise_xor.accumulate(W)&63]
    print W.tobytes()[::4]

ちょっとした説明:

  • S=A(r(32,60)+...) -アルファベットをコード範囲として定義する
  • T=A(r(128)) -サイズ128(最大コードポイント)の初期化ハッシュテーブル
  • T[S]=A(r(64)) -ハッシュテーブルを埋めます。つまり、ASCIIインデックスを持つ要素にインデックス0〜63を書き込みます。
  • W=T[fromstring(s,"b")] -入力を配列に変換し、新しいコードに変換します
  • W[0]=~W[0] -最初の値を反転
  • W=S[bitwise_xor.accumulate(W)&63] -ループを回避し、左の2ビットをリセットしてASCIIに戻すために、Numpyのxorの累算メソッドを使用します

1

アリス、46バイト

/" >"{""ZNr\'?wi.h%)qXq&[.&]?oe(K
\"<~`r}A*"!/

オンラインでお試しください!

説明

プログラムの前半は順序モードで実行され、数字から文字へのマッピングを設定します。後半はカーディナルモードで実行され、このマッピングを使用して入力をデコードします。

" ~"                    Push this string
    r                   Convert to entire range (all printable ASCII)
     "AZ"               Push this string
         r              Convert to entire range
          "<>`{}"       Push this string
                 *      Append last two strings
                  N     Remove characters from full string
                   !    Copy entire string to tape

'?                      Push 63 (code point of ?) onto the stack
  w                     Store return address (start main loop)
   i                    Take byte of input
    .h%                 Calculate n mod (n+1): this crashes on EOF (-1)
       )                Find byte on tape
        q               Get position on tape
         X              Bitwise XOR with current value
          q&[           Return to tape position 0
             .&]        Move to tape position corresponding to result of earlier XOR
                ?o      Get and output byte at current tape position
                  e(    Search for -1 to left of current tape position (which will put us at position -1)
                    K   Jump to previously pushed return address.

1

Japt -P、33バイト

;
EkB+"<>}\{`"1
¬i63 åÈ^VaYÃÅm!gV

オンラインでお試しください!

何らかの理由で、テストケースはスイートとして実行することに反対しているので、2番目3番目、および4番目を個別に示します。

説明:

;                    #Set E to a string of all printable ASCII characters

Ek          1        #Set V to E with these characters removed:
  B                  # All uppercase letters
   +"<>}\{`"         # and the characters "<>}{`"

¬                    #Turn the input into an array
 i63                 #Add the number 63 to the front of that array
     å     Ã         #Replace each character with:
      È              # The index of the previous decoded character in V
       ^             # Xor with...
        VaY          # The index of the current character in V
            Å        #Remove the extra character
             m!gV    #Map the indexes to the character in V
                     #Join to a string due to the flag

1

APL(NARS)、72文字、144バイト

{r←6⍴2⋄y←{r⊤⍵}¨¯1+⍵⍳⍨s←⎕AV[33..127]∼⎕A,'{<>}`'⋄y[1]←⊂∼↑y⋄s[1+{r⊥⍵}¨≠\y]}

これは、入力が常に配列 's'にあると仮定しています...解読方法を理解するために、最初にアセンブリバージョンを記述する必要がありました...テスト:

  h←{r←6⍴2⋄y←{r⊤⍵}¨¯1+⍵⍳⍨s←⎕AV[33..127]∼⎕A,'{<>}`'⋄y[1]←⊂∼↑y⋄s[1+{r⊥⍵}¨≠\y]}
  h ,'6'
f
  h '945/'
code
  h ",&'8[14 =?;gp+% 2'@s&&c45/eg8?&"
programming puzzles & code golf
  h ';a$5$%0r?2@12dw6# lb-eg&519nt%ot=9$@es@96+?;ga" 4*)&ta56dp[?o#t%oh/"(&?#ee![,+,/+fe4"'
a $150 reward will be given to those sending account and pin# to hackers@steal_id.com
  h "~!#!'!#!/!#!'!#![!#!'!#!/!#!'!#!~!#!'!#!/!#!'!#![!#!'!#!/!#!'!#!"
 !"#$%&'()*+,-./0123456789:;=?@[\]^_abcdefghijklmnopqrstuvwxyz|~

1

105103バイト、マシンコード(16ビットx86)、57命令

00000000: ff 01 b9 01 00 89 fa b4 3f cd 21 85 c0 75 02 cd
00000010: 20 8a 05 2c 20 3c 1d 72 1b 48 3c 1e 72 16 48 3c
00000020: 39 72 11 2c 1a 3c 25 72 0b 48 3c 3f 72 06 48 3c
00000030: 40 72 01 48 32 04 24 3f 88 04 3c 3f 72 01 40 3c
00000040: 3e 72 01 40 3c 24 72 01 40 3c 1f 72 02 04 1a 3c
00000050: 1d 72 01 40 3c 1c 72 01 40 04 20 43 89 d9 88 05 
00000060: b4 40 cd 21 4b eb 9b

実行中:codegolf.comに保存、dosbox:

codegolf.com < input.bin

楽しい部分をほとんど忘れてしまった: ここに画像の説明を入力してください

ハウディ、これは私の2番目のエントリです。以前のものはRC4でした。使用して行わHTのバイナリエディタをコンパイラせずに、私はCtrlキーを押しながら使用していたこの時間はassemble instruction、私はまだエントリかないと、このカウント場合は知りません。

なぜ、どのように

同様の方法で、NOPsでファイルを作成することから始めてから、RC4からの読み取り/書き込みを再利用しました。私は最初にアスキーからインデックスへのPython「翻訳ラダー」で書いた。それをアセンブリで使用して、逆方向に同様のラダーを作成し、最後に最初のバイトを処理する小さなトリックを追加しました

RC4と同様の方法で、最後のステップはnops、ジャンプの修正が必要な追加のを取り除くことでした。

解剖

再び、プログラムは初期レジスタ値に依存します

00000000 ff01                    inc         word ptr [bx+di]

ダミー、後で必要になります

00000002 b90100                  mov         cx, 0x1
00000005 89fa                    mov         dx, di
00000007 b43f                    mov         ah, 0x3f
00000009 cd21                    int         0x21

バイトを読む

0000000b 85c0                    test        ax, ax
0000000d 7502                    jnz         0x11
0000000f cd20                    int         0x20

stdinが終了したら終了する

00000011 8a05                    mov         al, [di]
00000013 2c20                    sub         al, 0x20
00000015 3c1d                    cmp         al, 0x1d
00000017 721b                    jc          0x34
00000019 48                      dec         ax
0000001a 3c1e                    cmp         al, 0x1e
0000001c 7216                    jc          0x34
0000001e 48                      dec         ax
0000001f 3c39                    cmp         al, 0x39
00000021 7211                    jc          0x34
00000023 2c1a                    sub         al, 0x1a
00000025 3c25                    cmp         al, 0x25
00000027 720b                    jc          0x34
00000029 48                      dec         ax
0000002a 3c3f                    cmp         al, 0x3f
0000002c 7206                    jc          0x34
0000002e 48                      dec         ax
0000002f 3c40                    cmp         al, 0x40
00000031 7201                    jc          0x34
00000033 48                      dec         ax

asciiをインデックスに変換するラダー(すべてのジャンプが0x134になることに注意してください)

00000034 3204                    xor         al, [si]

XOR前バイトごと、SIアドレスの点0x100最初に上部のダミー命令のオペコードから0xFFのを含み、そのネゲート挙動の結果(リマインダー:のCOMは、0x100の時にロードされます)

00000036 243f                    and         al, 0x3f
00000038 8804                    mov         [si], al

結果をインデックスに制限し、バイトを0x100で保存します。

0000003a 3c3f                    cmp         al, 0x3f
0000003c 7201                    jc          0x3f
0000003e 40                      inc         ax
0000003f 3c3e                    cmp         al, 0x3e
00000041 7201                    jc          0x44
00000043 40                      inc         ax
00000044 3c24                    cmp         al, 0x24
00000046 7201                    jc          0x49
00000048 40                      inc         ax
00000049 3c1f                    cmp         al, 0x1f
0000004b 7202                    jc          0x4f
0000004d 041a                    add         al, 0x1a
0000004f 3c1d                    cmp         al, 0x1d
00000051 7201                    jc          0x54
00000053 40                      inc         ax
00000054 3c1c                    cmp         al, 0x1c
00000056 7201                    jc          0x59
00000058 40                      inc         ax
00000059 0420                    add         al, 0x20

逆方向のはしご

0000005b 43                      inc         bx
0000005c 89d9                    mov         cx, bx
0000005e 8805                    mov         [di], al
00000060 b440                    mov         ah, 0x40
00000062 cd21                    int         0x21
00000064 4b                      dec         bx

[di]の下にバイトを置き、stdoutにバイトを書き込みます(AH = 40hはアドレスとしてDXを使用しますが、バイトを読み取るときに先頭に設定されていることに注意してください)

stdin-> stdoutおよびstdout to stdinは、inc bx / dec bxを使用して行われることに注意してください

00000067 eb99                    jmp         0x2

ループ^^

ツールとリソース

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.