diff -r 307788aac0a8 -r 8248b03a2669 rtp/srtpstack/inc/srtpauthentication_rcc.h --- a/rtp/srtpstack/inc/srtpauthentication_rcc.h Tue Feb 02 01:03:15 2010 +0200 +++ b/rtp/srtpstack/inc/srtpauthentication_rcc.h Fri Apr 16 15:18:54 2010 +0300 @@ -23,6 +23,8 @@ #include "msrtpauthentication.h" +class CHMAC; + class CSrtpAuthentication_RCC : public CBase, public MSRTPAuthentication { public: @@ -65,7 +67,13 @@ */ CSrtpAuthentication_RCC(); - void ConstructL(); + void ConstructL(); + + void CreateHmacL(const TDesC8& aKey); + + private: // data + HBufC8* iKey; + CHMAC* iHmac; }; #endif //__SRTP_AUTHENTICATION_RCC_H__