myanmarlinks / ssl_pinning_plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ssl_pinning_plugin

Plugin for check SSL Pinning on request HTTP.

Checks the equality between the known SHA-1 or SHA-256 fingerprint and the SHA-1 or SHA-256 of the target server.

Getting Started

For help getting started with Flutter, view our online documentation.

For help on editing plugin code, view the documentation.

Check

###Params

  • serveurUrl : String
  • headerHttp : Map<String, String>
  • sha : SHA enum [SHA.SHA1 || SHA.SHA256]
  • allowedSHAFingerprints : List<String>
  • timeout : int

###Usage :

await SslPinningPlugin.check(serverURL: url, headerHttp : new Map(), sha: SHA.SHA1, allowedSHAFingerprints: new List<String>, timeout : 50);

###Return :

  • On success, return String "CONNECTION_SECURE"
  • On error, return String "CONNECTION_INSECURE"

If an exception, return the stacktrace on String value.

About

License:Apache License 2.0


Languages

Language:Dart 37.6%Language:Swift 24.6%Language:Kotlin 20.4%Language:Ruby 15.3%Language:Objective-C 2.0%