diff -r 86979fe66c4c -r 504e41245867 policymanagement/policyengine/policyengineserver/src/TrustedSession.cpp --- a/policymanagement/policyengine/policyengineserver/src/TrustedSession.cpp Wed Mar 31 23:00:03 2010 +0300 +++ b/policymanagement/policyengine/policyengineserver/src/TrustedSession.cpp Wed Apr 14 16:50:34 2010 +0300 @@ -28,7 +28,7 @@ #include "ErrorCodes.h" #include -#include +#include @@ -244,7 +244,7 @@ TCertInfo certInfo; TPckg pck( certInfo ); - TImCodecB64 base64; + TBase64 base64; User::LeaveIfError( base64.Decode( value, pck ) ); //create suject info for it @@ -472,7 +472,7 @@ //serialize TCertInfo and decode it to base64 format TPckg pck( iSessionCertInfo); - TImCodecB64 base64; + TBase64 base64; HBufC8 * base64coded = HBufC8::NewLC( pck.Length() * 3); TPtr8 base64Ptr = base64coded->Des(); User::LeaveIfError( base64.Encode( pck, base64Ptr)); @@ -999,7 +999,7 @@ TCertInfo certInfo; TPckg pck( certInfo); - TImCodecB64 base64; + TBase64 base64; User::LeaveIfError( base64.Decode( binaryCert, pck)); //create suject info for it @@ -1457,7 +1457,7 @@ } #endif //#ifdef __DEBUG //convert base64 coding to binary format - TImCodecB64 base64; + TBase64 base64; HBufC8 * base64Cert = HBufC8::NewLC( certPtr.Length()); TPtr8 base64Ptr = base64Cert->Des();