• C/C++ 使用 cryptopp 加密解密


    官网:https://www.cryptopp.com/docs/ref/index.html

    github:https://github.com/LYingSiMon/cryptopp

    文档:https://www.cryptopp.com/docs/ref/

    环境搭建
    引入 cryptlib.lib , 以及所有项目中的头文件

    AES 加密测试(ECB 模式为例)

    #include <iostream>
     
    #include "cryptlib.h"
    #include "rijndael.h"
    #include "modes.h"
    #include "files.h"
    #include "osrng.h"
    #include "hex.h"
    #include "base64.h"
     
    using namespace CryptoPP;
     
    // aes ebc 加密(输出 base64)
    std::string aes_encrypt_ecb_base64(std::string data , unsigned char* key, int keylen)
    {
        std::string encrypt_str;
     
        try 
        {
            CryptoPP::ECB_Mode<CryptoPP::AES>::Encryption ecb_encription(key, keylen);
            CryptoPP::StreamTransformationFilter stf_encription(
                ecb_encription,
                new CryptoPP::Base64Encoder(new CryptoPP::StringSink(encrypt_str)),
                CryptoPP::BlockPaddingSchemeDef::ZEROS_PADDING
            );
            stf_encription.Put(reinterpret_cast<const unsigned char*>(data.c_str()), data.length() + 1);
            stf_encription.MessageEnd();
        }
        catch (std::exception e) {
            std::cout << e.what() << std::endl;
        }
     
        return encrypt_str;
    }
     
    // aes ebc 加密(输出 hex) 
    std::string aes_encrypt_ecb_hex(std::string data , unsigned char* key, int keylen)
    {
        std::string encrypt_str;
     
        try 
        {
            CryptoPP::ECB_Mode<CryptoPP::AES>::Encryption ecb_encription(key, keylen);
            CryptoPP::StreamTransformationFilter stf_encription(
                ecb_encription,
                new CryptoPP::HexEncoder(new CryptoPP::StringSink(encrypt_str)),
                CryptoPP::BlockPaddingSchemeDef::ZEROS_PADDING
            );
            stf_encription.Put(reinterpret_cast<const unsigned char*>(data.c_str()), data.length() + 1);
            stf_encription.MessageEnd();
        }
        catch (std::exception e) {
            std::cout << e.what() << std::endl;
        }
     
        return encrypt_str;
    }
     
    // aes ebc 解密(输出 base64)
    std::string aes_decrypt_ecb_base64(std::string base64_data, unsigned char* key, int keylen)
    {
        try 
        {
            std::string aes_encrypt_data;
            CryptoPP::Base64Decoder decoder;
            decoder.Attach(new CryptoPP::StringSink(aes_encrypt_data));
            decoder.Put(reinterpret_cast<const unsigned char*>(base64_data.c_str()), base64_data.length());
            decoder.MessageEnd();
     
            std::string decrypt_data;
            CryptoPP::ECB_Mode<CryptoPP::AES>::Decryption ebc_description(key, keylen);
            CryptoPP::StreamTransformationFilter stf_description(
                ebc_description,
                new CryptoPP::StringSink(decrypt_data), 
                CryptoPP::BlockPaddingSchemeDef::ZEROS_PADDING
            );
     
            stf_description.Put(
                reinterpret_cast<const unsigned char*>(aes_encrypt_data.c_str()), 
                aes_encrypt_data.length()
            );
            stf_description.MessageEnd();
     
            return decrypt_data;
        }
        catch (std::exception e) {
            std::cout << e.what() << std::endl;
            return "";
        }
    }
     
    // aes ebc 解密(输出 hex)
    std::string aes_decrypt_ecb_hex(std::string hex_data, unsigned char* key, int keylen)
    {
        try
        {
            std::string aes_encrypt_data;
            CryptoPP::HexDecoder decoder;
            decoder.Attach(new CryptoPP::StringSink(aes_encrypt_data));
            decoder.Put(reinterpret_cast<const unsigned char*>(hex_data.c_str()), hex_data.length());
            decoder.MessageEnd();
     
            std::string decrypt_data;
            CryptoPP::ECB_Mode<CryptoPP::AES>::Decryption ebc_description(key, keylen);
            CryptoPP::StreamTransformationFilter stf_description(
                ebc_description,
                new CryptoPP::StringSink(decrypt_data),
                CryptoPP::BlockPaddingSchemeDef::ZEROS_PADDING
            );
     
            stf_description.Put(
                reinterpret_cast<const unsigned char*>(aes_encrypt_data.c_str()),
                aes_encrypt_data.length()
            );
            stf_description.MessageEnd();
     
            return decrypt_data;
        }
        catch (std::exception e) {
            std::cout << e.what() << std::endl;
            return "";
        }
    }
     
     
    int main()
    {
        // ebc base64 
        std::string en_base64 = aes_encrypt_ecb_base64("hello cryptopp",(unsigned char*)"1234567812345678", 16);
        printf("en:%s 
    ", en_base64.c_str());
        std::string de_base64 = aes_decrypt_ecb_base64(en_base64, (unsigned char*)"1234567812345678", 16);
        printf("de:%s 
    ", de_base64.c_str());
     
        // ebc hex
        std::string en_hex = aes_encrypt_ecb_hex("hello cryptopp", (unsigned char*)"1234567812345678", 16);
        printf("en:%s 
    ", en_hex.c_str());
        std::string de_hex = aes_decrypt_ecb_hex(en_hex, (unsigned char*)"1234567812345678", 16);
        printf("de:%s 
    ", de_hex.c_str());
        
     
     
        (void)getchar();
        return 0;
    }
    

    版权声明: 本博客,文章与代码均为学习时整理的笔记,博客中除去明确标注有参考文献的文章,其他文章【均为原创】作品,转载请务必【添加出处】,您添加出处是我创作的动力!

    警告:如果您恶意转载本人文章,则您的整站文章,将会变为我的原创作品,请相互尊重!
  • 相关阅读:
    c语言简易文法
    词法分析实验报告
    词法分析程序
    scrapy-splash的安装和使用
    scrapy关于将数据保存进mysql数据库及问题解决(增删查改)
    关于scrapy的一些练习
    安装python框架scrapy
    ssm中遇到的一些问题及解决办法
    安装PIL和pytesseract,用Pycharm自动化测试,验证码登陆
    selenium+pycham自动化登陆qq邮箱发送邮件
  • 原文地址:https://www.cnblogs.com/LyShark/p/15086644.html
Copyright © 2020-2023  润新知