本地数据的安全性如何
ApplicationData.Current.LocalSettings
Run Code Online (Sandbox Code Playgroud)
Windows 8商店应用程序中使用的存储?
可以从应用程序外部操纵此数据吗?
我查看了数据的位置
C:\用户[用户名] \应用程序数据\本地\封装[package_namespace]\LocalState)
但没有找到它.它到底在哪里保存?
我正在尝试评估此存储机制的安全性,以决定是否可以在那里存储安全关键信息.
我有以下架构(从自定义模块中的架构模块(7.x-1.0-beta3)的现有表生成.
function myproject_entities_schema() {
// ---------------------------------------------------------------------------------
// MESSAGE
// ---------------------------------------------------------------------------------
$schema['myproject_entity_message'] = array(
'description' => 'The base table for myproject message instances',
'fields' => array(
'id' => array(
'description' => 'The primary identifier for a message instance',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'weekendday' => array(
'description' => 'Whether this message gets send on a weekendday(1) or on a workday(0)',
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0, …Run Code Online (Sandbox Code Playgroud)