aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/utils/aes128ecb_decrypt_file.cpp
blob: 5d9afd2594da353eebb952f14772389149e3a458 (plain) (tree)
1
2
3
4
5
6
7
8
9






                                                                       
 
                      
                          
 
                  
 
                    








                          
                                                                        




                                                                  


                                                                       





                               

                                                         



                          

       

                                                                                     


                                             
                                                                                




                                                                           
                                  
                                  


                                                               

                                                                        
 



















                                                     



                                                                            
                                                   








                                      
/**
 * \file
 * \author Egor Tensin <Egor.Tensin@gmail.com>
 * \date 2015
 * \copyright This file is licensed under the terms of the MIT License.
 *            See LICENSE.txt for details.
 */

#include <aesni/all.h>
#include <aesnixx/all.hpp>

#include <cstdlib>

#include <exception>
#include <iostream>
#include <fstream>
#include <string>
#include <vector>

namespace
{
    void exit_with_usage()
    {
        std::cout << "Usage: aes128ecb_decrypt_file.exe KEY SRC DEST\n";
        std::exit(EXIT_FAILURE);
    }

    std::ifstream::pos_type get_file_size(const std::string& path)
    {
        std::ifstream ifs;
        ifs.exceptions(std::ifstream::badbit | std::ifstream::failbit);
        ifs.open(path, std::ifstream::binary | std::ifstream::ate);
        return ifs.tellg();
    }
}

int main(int argc, char** argv)
{
    AesNI_Block128 key;
    AesNI_KeySchedule128 key_schedule, inverted_schedule;

    if (argc != 4)
        exit_with_usage();

    try
    {
        aesni_parse_block128(&key, argv[1], aesni::ErrorDetailsThrowsInDestructor());

        const std::string src_path(argv[2]);
        const std::string dest_path(argv[3]);

        const auto src_size = static_cast<std::size_t>(get_file_size(src_path));

        std::ifstream src_ifs;
        src_ifs.exceptions(std::ifstream::badbit | std::ifstream::failbit);
        src_ifs.open(src_path, std::ifstream::binary);

        std::vector<char> src_buf;
        src_buf.reserve(src_size);
        src_buf.assign(std::istreambuf_iterator<char>(src_ifs),
                       std::istreambuf_iterator<char>());

        aesni_expand_key_schedule128(key, &key_schedule);
        aesni_invert_key_schedule128(&key_schedule, &inverted_schedule);

        std::size_t dest_size;

        aesni_decrypt_buffer_ecb128(
            src_buf.data(),
            src_size,
            NULL,
            &dest_size,
            &inverted_schedule,
            aesni::ErrorDetailsThrowsInDestructor());

        std::vector<char> dest_buf;
        dest_buf.reserve(dest_size);

        aesni_decrypt_buffer_ecb128(
            src_buf.data(),
            src_size,
            dest_buf.data(),
            &dest_size,
            &inverted_schedule,
            aesni::ErrorDetailsThrowsInDestructor());

        std::ofstream dest_ofs;
        dest_ofs.exceptions(std::ofstream::badbit | std::ofstream::failbit);
        dest_ofs.open(dest_path, std::ofstream::binary);
        dest_ofs.write(dest_buf.data(), dest_size);
    }
    catch (const std::exception& e)
    {
        std::cerr << e.what() << "\n";
        return 1;
    }

    return 0;
}