diff -r 307788aac0a8 -r 8248b03a2669 rtp/srtpstack/inc/srtpaesctrcrypto.h --- a/rtp/srtpstack/inc/srtpaesctrcrypto.h Tue Feb 02 01:03:15 2010 +0200 +++ b/rtp/srtpstack/inc/srtpaesctrcrypto.h Fri Apr 16 15:18:54 2010 +0300 @@ -23,6 +23,7 @@ #include +class CAESEncryptor; class CSrtpAESCTRCrypto : public CBase { @@ -68,9 +69,16 @@ */ void IncreaseIV(TDes8& iv); + void CreateEncryptorL(const TDesC8& aKey); + +private: + + HBufC8* iKey; + CAESEncryptor* iEncryptor; + #ifdef EUNIT_TESTING friend class UT_CSrtpAESCTRCrypto; #endif }; -#endif // __SrtpAESCTRCrypto_H__ \ No newline at end of file +#endif // __SrtpAESCTRCrypto_H__