update security

This commit is contained in:
Jungpyo Hong 2021-06-03 14:35:13 -05:00 committed by GitHub
parent 15ce5b0efd
commit 7a56b57776
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,6 @@ Feel free to fork this repository and pull requests!!
- [UserDefaults](#UserDefaults) - [UserDefaults](#UserDefaults)
- [How to find documentDirectory](#How-to-find-documentDirectory) - [How to find documentDirectory](#How-to-find-documentDirectory)
- [Store Object](#Store-Object) - [Store Object](#Store-Object)
- [Keychain](#Keychain)
- [Core Data](#Core-Data) - [Core Data](#Core-Data)
- [Set Up Core Data](#Set-Up-Core-Data) - [Set Up Core Data](#Set-Up-Core-Data)
- [Core Data Usage](#Core-Data-Usage) - [Core Data Usage](#Core-Data-Usage)
@ -80,6 +79,9 @@ Feel free to fork this repository and pull requests!!
- [FRP](#FRP) - [FRP](#FRP)
- [Rxswift](#Rxswift) - [Rxswift](#Rxswift)
- [Combine](#Combine) - [Combine](#Combine)
- [Security](#Security)
- [Checklist For App Security](#Checklist-For-App-Security)
- [Keychain](#Keychain)
- [Error Search](#Error-Search) - [Error Search](#Error-Search)
- [Useful Stuff](#Useful-Stuff) - [Useful Stuff](#Useful-Stuff)
- [How to submit your app to the AppStore](#how-to-submit-your-app-to-the-appstore) - [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/) [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 ## Error Search
Find your common error here Find your common error here