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