> For the complete documentation index, see [llms.txt](https://developer.aliothx.net/start/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.aliothx.net/start/flutter/factory/security.md).

# 보안 (Security)

기업용 크로스플랫폼에서는 대칭키/비대칭키/해시등 다양한 보안모듈을 연동해서 사용할 수 있습니다. 레거시 네이티브기반의 암호모듈과도 100% 연동및 호환이 가능하며 앱 위/변조 탐지및 차단, 탈옥및 루팅탐지및 차단등의 기능을 제공하고 있습니다.

대칭키 암호알고리즘 (Symmetric-Key Algorithm)&#x20;

* AES, DES (SEED, ARIA는 채널링으로 연동가능)&#x20;

비대칭키 암호알고리즘 (Asymmetric-Key Algorithm)&#x20;

* AES with PKCS7 padding&#x20;
* RSA with PKCS1 and OAEP encoding&#x20;
* Salsa20&#x20;
* Signing : SHA256 with RSA&#x20;

메시지 다이제스트&#x20;

* SHA-1, SHA-224, SHA-256, SHA-384, SHA-512, SHA-512/224, SHA-512/256&#x20;
* MD5&#x20;
* HMAC (i.e. HMAC-MD5, HMAC-SHA1, HMAC-SHA256)&#x20;

탈옥및 루팅 탐지및 차단&#x20;

* AOS 탈옥 탐지및 차단&#x20;
* IOS 루팅 탐지및 차단&#x20;

앱 위/변조 탐지및 차단&#x20;

* AOS 위/변조, 무결성 탐지및 차단 - <https://docs.flutter.dev/deployment/obfuscate>&#x20;

코드 난독화&#x20;

* ProGuard - <https://developer.android.com/studio/build/shrink-code?hl=ko>&#x20;
* DexGuard - <https://www.guardsquare.com/dexguard>
