summaryrefslogtreecommitdiffstats
path: root/other-licenses/7zstub/src/CPP/7zip/Crypto/MyAesReg.cpp
blob: 3427ad6257bd55fb86f8bb2a6c1f2296a4bfb2c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// MyAesReg.cpp

#include "StdAfx.h"

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

#include "MyAes.h"

namespace NCrypto {

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

}