encode2.cpp

来自「想学习汇编语言的」· C++ 代码 · 共 46 行

CPP
46
字号
// ENCODE2.CPP

#include <iostream.h>
#include <fstream.h>

// Translate a buffer of <count> bytes, using an encryption
// character <eChar>. Uses an XOR operation (ASM function).

const int BUFSIZE = 200;
char buffer[BUFSIZE];

int main() 
{  
  unsigned count;    // character count
 
  unsigned short encryptCode;
  cout << "Encryption code [0-255]? ";
  cin >> encryptCode;
  unsigned char encryptChar = (unsigned char) encryptCode;
  
  ifstream infile( "infile.txt", ios::binary );
  ofstream outfile( "outfile.txt", ios::binary );
 
  cout << "Reading INFILE.TXT and creating OUTFILE.TXT...\n";

  while (!infile.eof() )
  {
    infile.read(buffer, BUFSIZE );
    count = infile.gcount();

    __asm {
       lea esi,buffer
       mov ecx,count
       mov al, encryptChar
    L1:
       xor [esi],al
       inc  esi
       Loop L1
   } // asm
    
    outfile.write(buffer, count);
  }

  return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?