p7zip/CPP/7zip/Crypto/MyAesReg.cpp
2017-10-11 12:35:36 +02:00

17 lines
225 B
C++

// MyAesReg.cpp
#include "StdAfx.h"
#include "../Common/RegisterCodec.h"
#include "MyAes.h"
namespace NCrypto {
REGISTER_FILTER_E(AES256CBC,
CAesCbcDecoder(32),
CAesCbcEncoder(32),
0x6F00181, "AES256CBC")
}