使用WinCrypt进行AES-128加密

时间:2017-04-27 11:50:18

标签: c++ c aes cryptoapi wincrypt

我需要使用WinCrypt为我的C / C ++应用程序加密AES-128下的字符串。

为了理解整个过程是如何工作的,我编写了一个用16字节AES密钥(128位)加密16字节字符串的程序,但它没有按预期工作(并且MSDN示例没有帮助)。

我的主要问题是调用CryptEncrypt,我可能不清楚如何使用这些参数:

  • * pbData
  • * pdwDataLen
  • dwBufLen

这是我的代码:

#include <windows.h> 
#include <stdio.h>
#include <wincrypt.h>
#define ENCRYPT_ALGORITHM CALG_AES_128

int main()
{

  HCRYPTPROV hCryptProv;
  HCRYPTKEY hKey;

//---------------------------------------------------------------
// Get the handle to the provider.
if(CryptAcquireContext(
    &hCryptProv, 
    NULL, 
    NULL, //MS_ENH_RSA_AES_PROV
    PROV_RSA_AES, 
    0))
{
    printf("A cryptographic provider has been acquired. \n");
}
else
{
    printf("Error during CryptAcquireContext!\n");
    exit(1);
}


//---------------------------------------------------------------
//  Create a random session key. 

 if(CryptGenKey(
          hCryptProv, 
          ENCRYPT_ALGORITHM, 
          CRYPT_EXPORTABLE, //KEYLENGTH | CRYPT_EXPORTABLE, 
          &hKey))
 {
         printf("A session key has been created.\n");
 } 
 else
 {
          printf("Error during CryptGenKey.\n"); 
          exit(1);
 }
}

char text_test [] = "abcdabcdabcdabcd";
   DWORD text_len = strlen(text_test);

   printf("PlainText: %s\n",text_test);
   printf("Buf Len: %d\n",text_len);

   if (!CryptEncrypt(hKey,
                    NULL,  // hHash = no hash
                    1,  // Final
                    0,     // dwFlags
                    &text_test, //*pbData
                    &text_len,  //*pdwDataLen
                    32)) {      //dwBufLen
     printf("Encryption failed\n");
   }

   printf("CipherText: %s\n",text_test);
   printf("Len: %d\n",text_len);

   if (!CryptDecrypt(hKey,
                    NULL,  // hHash = no hash
                    1,  // Final
                    0,     // dwFlags
                    &text_test,
                    &text_len)) {
     printf("Decryption failed\n");
   }

   printf("PlainText: %s\n",text_test);
   printf("Len: %d\n",text_len);
.
.
.
CryptDestroyKey(hKey)
.
.
CryptReleaseContext(hCryptProv, 0)
.

cmd中的输出是:

enter image description here

任何人都可以解释为什么解密的字符串更长,哪个正确使用CryptEncrypt的三个参数?我将最后一个值设置为32,因为经过一些试验和错误后,这是使这些东西起作用的唯一值。请帮助,并提前感谢您!

2 个答案:

答案 0 :(得分:1)

我也不熟悉密码学,但是来自here的代码可能有你的解决方案:

<%= select_tag :teacher, options_for_select(Teacher.all.collect {|t| ([t._name, t.id] unless @course.teachers.include?(t))}.compact )%>

或者我可能有一些使用Crypto ++的类似项目代码

答案 1 :(得分:0)

它的填充。默认情况下,您将获得与您加密的字节相同数量的填充。忽略最后16个字节。前16个字节是你想要的。