mirror of
https://github.com/holub/mame
synced 2025-05-07 23:02:33 +03:00
13 lines
219 B
C++
13 lines
219 B
C++
// MyAesReg.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "../Common/RegisterCodec.h"
|
|
|
|
#include "MyAes.h"
|
|
|
|
REGISTER_FILTER_E(AES256CBC,
|
|
NCrypto::CAesCbcDecoder(32),
|
|
NCrypto::CAesCbcEncoder(32),
|
|
0x6F00181, "AES256CBC")
|