Creates a new secure store.
+ (SUPDataVault*)createVault:(NSString*)name withPassword:(NSString*)password withSalt:(NSString*)salt;
createVault creates a SUPDataVault instance.
If a vault already exists with the same name, a SUPDataVaultException is thrown this with the reason kDataVaultExceptionReasonAlreadyExists.
@try
{
if(![SUPDataVault vaultExists:@"myVault"])
{
oVault = [SUPDataVault createVault:@"myVault"
withPassword:@"goodPassword"
withSalt:@"goodSalt"];
}
}
@catch ( NSException *e )
{
NSLog(@"SUPDataVaultException: %@",[e description]);
}