- Mastering OAuth 2.0
- Charles Bihis
- 213字
- 2021-07-30 10:05:13
What about mobile?
When it comes to which workflow to use for an application on a mobile device, the same considerations are taken into account: can the application securely store and transmit confidential data. This topic gets interesting when we start discussing modern mobile platforms. Most modern mobile platforms provide APIs for secure storage:
- iOS: iOS 4+ SDK utilizes Data Protection
- Android: Android 6+ SDK v23+ provides the Android Keystore system
- Windows Mobile: Windows Phone SDK 8+ provides the DPAPI (Data Protection API)
Tip
This is not an exhaustive list of APIs for secure storage for each platform. Most modern mobile platforms actually provide many different methods for securely storing your data. This is only a sampling.
Used in conjunction with secure transmission protocols, such as SSL or TLS, many application developers consider these satisfactory for the requirements of secure storage and transmission of confidential information, and therefore consider their mobile applications trusted. This thinking, however, is flawed. Certainly, these secure storage APIs are very secure, and are satisfactory for most practical situations. However, for applications that require a higher level of security and scrutiny, they should be considered untrusted. See the Are mobile applications trusted or untrusted? section in Chapter 10, What About Mobile?, for a more detailed discussion of this topic.
- VMware View Security Essentials
- 零基礎學C++程序設計
- Dependency Injection in .NET Core 2.0
- Servlet/JSP深入詳解
- C語言程序設計
- 物聯網系統開發:從0到1構建IoT平臺(第2版)
- 概率成形編碼調制技術理論及應用
- Learning Python Design Patterns
- 從Java到Web程序設計教程
- Multithreading in C# 5.0 Cookbook
- AIRIOT物聯網平臺開發框架應用與實戰
- ElasticSearch Cookbook(Second Edition)
- 大學計算機基礎實訓教程
- Java程序設計
- C/C++代碼調試的藝術