add missing #include, and fix CounterMode typedef

import/raw
weidai 2003-02-03 23:59:45 +00:00
parent 809f4e30c1
commit 9d892e2fe8
1 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@
#include "misc.h"
#include "strciphr.h"
#include "argnames.h"
#include "algparam.h"
NAMESPACE_BEGIN(CryptoPP)
@ -361,7 +362,7 @@ struct CBC_CTS_Mode_ExternalCipher : public CipherModeDocumentation
typedef CFB_Mode_ExternalCipher::Encryption CFBEncryption;
typedef CFB_Mode_ExternalCipher::Decryption CFBDecryption;
typedef OFB_Mode_ExternalCipher::Encryption OFB;
typedef OFB_Mode_ExternalCipher::Encryption CounterMode;
typedef CTR_Mode_ExternalCipher::Encryption CounterMode;
#endif
NAMESPACE_END