2013-05-10 3 views
0

cryptopp에서 AES를 사용하여 데이터를 암호화하고 해독하는 두 가지 기능을 작성하려고합니다. 암호문을 매개 변수로 해독 함수에 전달하려고합니다. 그러나 암호 해독 기능에서는 암호문 &으로 특수 기호를 수신하므로 적절히 암호 해독되지 않습니다. 도와주세요. char*는 암호화 된 데이터 등의 텍스트 문자열이 아닌 뭔가를 가리키는 경우AES 암호문을 매개 변수로 사용하십시오.

// -- AES encryption function ---------- 
void Security_packetAgent::encryption(char out[]) 
{ 
    std::string plaintext = out; 
    std::string ciphertext = ""; 

    CryptoPP::AES::Encryption aesEncryption(key, CryptoPP::AES::DEFAULT_KEYLENGTH); 
    CryptoPP::CBC_Mode_ExternalCipher::Encryption cbcEncryption(aesEncryption, iv); 

    CryptoPP::StreamTransformationFilter stfEncryptor(cbcEncryption, new CryptoPP::StringSink(ciphertext)); 
    stfEncryptor.Put(reinterpret_cast<const unsigned char*>(plaintext.c_str()), plaintext.length() + 1); 
    stfEncryptor.MessageEnd(); 

    std::cout << "Cipher Text (" << ciphertext.size() << " bytes)" << std::endl; 

    for(int i = 0; i < ciphertext.size(); i++) 
    { 
     std::cout << "0x" << std::hex << (0xFF & static_cast<byte>(ciphertext[i])) << " "; 
    } 

    std::cout<<"\nMessage encrypted ..."; 
    std::cout << std::endl << std::endl; 
    sprintf(out, "%s", ciphertext.c_str()); 
    printf("Final Data: %s : %s ", out, reinterpret_cast<const unsigned char*>(ciphertext.c_str())); 
} 

// ---- AES decryption ------------------ 
void Security_packetAgent::decryption(char out[]) 
{ 
    cout<<"\nCipher recieved: "<<out; 
    std::cout<<"\nEntered decryption .."; 
    std::string ciphertext = out; 
    std::string decryptedtext; 

    cout<<"\nCipher recieved: "<<reinterpret_cast<const unsigned char*>(ciphertext.c_str()); 
    CryptoPP::AES::Decryption aesDecryption(key, CryptoPP::AES::DEFAULT_KEYLENGTH); 
    CryptoPP::CBC_Mode_ExternalCipher::Decryption cbcDecryption(aesDecryption, iv); 

    CryptoPP::StreamTransformationFilter stfDecryptor(cbcDecryption, new CryptoPP::StringSink(decryptedtext)); 
    stfDecryptor.Put(reinterpret_cast<const unsigned char*>(ciphertext.c_str()), ciphertext.size()); 
    stfDecryptor.MessageEnd(); 

    std::cout << "Decrypted Text: " << std::endl; 
    std::cout << decryptedtext; 
    std::cout << std::endl << std::endl;  
} 
+0

문제를 재현하는 코드 샘플을 제공 할 수 있습니까? 또한 오류가 무엇이고 예상 한 결과가 무엇인지 보여줍니다. –

+0

dauphic이 (가) 당신의 질문에 답변했습니다. 당신은 그의 대답을 표시하는 예의의 연장을 고려할 수 있습니다. – jww

답변

3

당신은 char*에서 std::string을 구성 할 수 없습니다.

std::string ciphertext = out; 

ciphertext의 건설은 0 바이트에 도달하자마자 out에서 복사 중지 할 것입니다. 대신 길이의을 암호화 된 데이터로 전달하고 std::string(const char* data, size_t size) 생성자를 사용해야합니다.

std::string ciphertext(out, outSize); 

또는 시작 및 종료 반복기를 사용하는 생성자를 사용할 수도 있습니다.