tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

MyAesReg.cpp (241B)


      1 // MyAesReg.cpp
      2 
      3 #include "StdAfx.h"
      4 
      5 #include "../Common/RegisterCodec.h"
      6 
      7 #include "MyAes.h"
      8 
      9 namespace NCrypto {
     10 
     11 REGISTER_FILTER_E(AES256CBC,
     12    CAesCbcDecoder(32),
     13    CAesCbcEncoder(32),
     14    0x6F00181, "AES256CBC")
     15 
     16 }