Creates a new secure store.
public static DataVault createVault( String name, String password, String salt )
createVault creates a DataVault instance.
If a vault already exists with the same name, a DataVaultException is thrown this with the reason ALREADY_EXISTS.
DataVault vault = null;
if (!DataVault.vaultExists("myVault"))
{
vault = DataVault.createVault("myVault", "password", "salt");
}
else
{
vault = DataVault.getVault("myVault");
}