All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Secure Storage

API Reference


API for accessing secure storage.

Secure storage can be used to store sensitive information like passwords, keys, certificates, etc. All data in the secure storage is stored in an encrypted format. Each app using this API only has access to its own secure data.

An app's items in secure storage have a name and a value. The name of the item is used to access the item's value. For example, to create or update an item use the le_secStore_Write() function, specify the item's name and value. If the item doesn't exist, it will be created. To read an item use the le_secStore_Read() function, specify the item's name. An item can be deleted using the le_secStore_Delete() function.

All the functions in this API are provided by the secStore service.

Here's a code sample binding to this service:

bindings:
{
   clientExe.clientComponent.le_secStore -> secStore.le_secStore
}

Copyright (C) Sierra Wireless Inc. Use of this work is subject to license.