diff -r dd3853b8dc3f -r 1e1cc61f56c3 rtp/srtpstack/inc/srtpauthentication_rcc.h --- a/rtp/srtpstack/inc/srtpauthentication_rcc.h Fri Feb 19 23:10:33 2010 +0200 +++ b/rtp/srtpstack/inc/srtpauthentication_rcc.h Fri Mar 12 15:44:11 2010 +0200 @@ -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__