flutter_secure_app 1.0.7
flutter_secure_app: ^1.0.7 copied to clipboard
A robust security wrapper for Flutter applications implementing Runtime Application Self-Protection (RASP), SSL Pinning, and Anti-Proxy mechanisms.
1.0.7 #
- Fixed a false positive in
raspThreatDeviceIdon iOS release IPA builds.identifierForVendor(IDFV) can change after an app uninstall+reinstall while the Keychain retains the old value, causing a permanent mismatch._checkDeviceIdSpoofingnow skips iOS entirely; iOS device binding is already enforced by_checkDeviceBindingvia the Keychain/SharedPreferences cross-check.
1.0.6 #
- Fixed a bug in
SecureHttpClientAdapterwherebypassSpkiForLocalhostdid not work when the certificate wasnull. The localhost check is now evaluated before the null certificate check, ensuring local development bypass works correctly regardless of certificate availability.
1.0.5 #
- Release
1.0.5to publish latest Flutter/Dart upgrade and SPKI pinning documentation updates.
1.0.4 #
- Bumped version for new package release.
- Confirmed Flutter/Dart support upgrade and highlighted
SSL SPKI Pinning Interceptorfeature.
1.0.3 #
- Updated README to highlight
SSL SPKI Pinning Interceptoras a separate feature. - Clarified SPKI pinning support and example usage for
SecureHttpClientAdapter.
1.0.2 #
- SSL SPKI Pinning Interceptor Added (SSL Subject Public Key Info Control)
- Added optional SPKI pinning support to
SecureHttpClientAdapterfor public key validation. - Kept existing SHA-256 certificate fingerprint pinning flow in
SslPinningInterceptor. - Added
asn1libandcryptodependencies to support SPKI extraction and hashing. - Updated README and example usage for SPKI pinning integration.
1.0.1 #
- Updated README with detailed network security (Dio) features and pub.dev badges.
1.0.0 #
- Initial release.
- Integrated RASP features: Jailbreak/Root, Emulator, and Debugger detection.
- Integrated App Signature and iOS Team ID validation.
- Added SSL Pinning and SecureHttpClientAdapter for secure Dio requests.