We have developed an application in Blackberry 8830. And we have stored the data in the Persistent Store. However, we would like to use some protection mechanism to secure the data.
We were using the following code : Code Sample
`try{ codeSigningKey = codeSigningKey.get(ApplicationDescriptor.currentApplicationDescriptor().getModuleHandle(), 1234);
_bill=new Vector();
_bill=vtr;
synchronized(billing)
{
billing.setContents(new ControlledAccess(_bill, codeSigningKey));
billing.commit();
}
}
catch(ControlledAccessException cae){
System.out.println("Signing keys does not match: No Autorization to access data . ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^");
}`
Kindly help, How to protect the data by using the above mechanism and if someone could help us the ways to achieve it. Or some other way.
Thank you all, Dheeraj Jami