2013-07-25 102 views
0
  • 有人可以看看這個對我來說,並幫助我解出一個解密,將扭轉用戶輸入的字符串。我不是說只是做這個程序的反面。彙編代碼。加密解密例程

    push edx 
        push ecx 
        not eax 
        add eax,0x04 
        mov edx,eax 
        pop eax 
        xor eax,edx 
        pop edx 
        rol al,1 
        rol al,1 
        rol al,1 
        sub al,0x02 
        ret 
    

    *

的寄存器有:Inwards- ECX:加密密鑰。 eax:要加密的字符。

向外:加密字符

謝謝您花時間看看。

+1

你有什麼具體的* *問題:

這兩個職能由一個循環,解密值回測試的任何錯誤? 「幫助我」並不是那麼具體。 –

+0

問題在哪裏?你有測試數據嗎? – nio

+0

可能重複[如何解密此加密程序?](http://stackoverflow.com/questions/11677101/how-can-i-decrypt-this-encryption-routine) – harold

回答

0

該算法是對稱的,因爲我可以解密每個字符和組合鍵。

#include <iostream> 
using namespace std; 

unsigned char enc(unsigned char ch, unsigned char key) 
{ 
    unsigned char tmp = key^(~ch+(unsigned char)0x04); 
    return (((tmp<<3) | (tmp>>5)) & 0xff)-0x02; 
} 

unsigned char dec(unsigned char ch, unsigned char key) 
{ 
    unsigned char tmp = (ch+0x02); 
    tmp = ((tmp>>3) | (tmp<<5)) & 0xff; 
    return ~((tmp^key)-(unsigned char)0x04); 
} 

int main() 
{ 
    // single encryption test 
    char c = 'A'; 
    char key = 'K'; 
    cout << "single test:" << (char)enc(c, key) << endl; 

    bool problem = false; 
    int k, ch; 
    for(k=0;k<256;k++) 
    { 

     for(ch=0;ch<256;ch++) 
     { 
      if(enc(dec((unsigned char)ch, (unsigned char)k), k) != ch) 
      { 
       problem = true; 
       cout << "error k=" << k << "c=" << ch 
        << "result=" << (unsigned int)enc(dec((unsigned char)ch, (unsigned char)key), (unsigned char)key) << endl; 

      } 
     } 
    } 
    if(problem) cout << "There was a problem." << endl; 
    else cout << "There was no problem." << endl; 
}