1 #include <iostream> 2 3 using namespace std; 4 bool Encrypt(const char szText[],unsigned int nTextLen, 5 char szOutString[],unsigned int nOutLen) 6 { 7 8 if(nTextLen<=0 || nOutLen<nTextLen) 9 { 10 11 return false; 12 13 } 14 char chLetter; 15 for(int i=0;i<nTextLen-1;i++) 16 { 17 chLetter=szText[i]+i+10; 18 szOutString[i]=chLetter; 19 } 20 szOutString[nTextLen-1]='