From 7a56b57776216b126f34c4e095db1e87e724940e Mon Sep 17 00:00:00 2001 From: Jungpyo Hong Date: Thu, 3 Jun 2021 14:35:13 -0500 Subject: [PATCH] update security --- README.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cc652ac..340b5dc 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,6 @@ Feel free to fork this repository and pull requests!! - [UserDefaults](#UserDefaults) - [How to find documentDirectory](#How-to-find-documentDirectory) - [Store Object](#Store-Object) -- [Keychain](#Keychain) - [Core Data](#Core-Data) - [Set Up Core Data](#Set-Up-Core-Data) - [Core Data Usage](#Core-Data-Usage) @@ -80,6 +79,9 @@ Feel free to fork this repository and pull requests!! - [FRP](#FRP) - [Rxswift](#Rxswift) - [Combine](#Combine) +- [Security](#Security) + - [Checklist For App Security](#Checklist-For-App-Security) + - [Keychain](#Keychain) - [Error Search](#Error-Search) - [Useful Stuff](#Useful-Stuff) - [How to submit your app to the AppStore](#how-to-submit-your-app-to-the-appstore) @@ -1024,6 +1026,23 @@ Combine released on iOS13 from Apple for Functional Reactive Programming. [Swiftbysundell](https://www.swiftbysundell.com/basics/combine/) +## Security + +## Checklist For App Security + + - Keychain For Sensitive Data Storage + - Application Transport Security Layer + - SSL Pinning + - Jailbroken Device Check + - Disable Debug Logs + - Third-Party Library Usage Check + - Code Obfuscation + - Cryptography + - Biometric Access + +## Keychain + + ## Error Search Find your common error here