Welcome to mirror list, hosted at ThFree Co, Russian Federation.

7zAesRegister.cpp « Crypto « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f9d59699b7c5afe7ed09453c5e36620a17547091 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 7zAesRegister.cpp

#include "StdAfx.h"

#include "../Common/RegisterCodec.h"

#include "7zAes.h"

namespace NCrypto {
namespace N7z {

REGISTER_FILTER_E(7zAES,
    CDecoder(),
    CEncoder(),
    0x6F10701, "7zAES")

}}