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

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

#include "StdAfx.h"

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

#include "MyAes.h"

REGISTER_FILTER_E(AES256CBC,
    NCrypto::CAesCbcDecoder(32),
    NCrypto::CAesCbcEncoder(32),
    0x6F00181, "AES256CBC")