分类: C/C++
2009-04-03 17:08:04
3rd CSecurityBase CSecurityBase在2nd中有,但在3rd的e32base.h没找到定义,请问我要移植到3rd怎么处理 比如如下代码: CSecurityBase* secure = Security::NewL(); CleanupStack::PushL(secure); secure->SetL(KNullDesC, KXRoseDBPass); CSecurityEncryptBase* iKey = secure->NewEncryptL(KXRoseSecure); User::LeaveIfError( database.Create( fsSession, iDatabaseName, TPtrC(), iKey ) ); CleanupStack::PopAndDestroy();//secure |
Re: 3rd CSecurityBase You need to implement your own encryption/decryption algorithm yourself on S60 3rd edition. The API does not exist any more. |