p7zip/CPP/7zip/Crypto/MyAesReg.cpp

17 lines
225 B
C++
Raw Permalink Normal View History

2017-10-11 12:35:36 +02:00
// MyAesReg.cpp
#include "StdAfx.h"
#include "../Common/RegisterCodec.h"
#include "MyAes.h"
namespace NCrypto {
REGISTER_FILTER_E(AES256CBC,
CAesCbcDecoder(32),
CAesCbcEncoder(32),
0x6F00181, "AES256CBC")
}