项目作者: macif-dev

项目描述 :
SSL Pinning Plugin Flutter
高级语言: Dart
项目地址: git://github.com/macif-dev/ssl_pinning_plugin.git
创建时间: 2018-05-29T09:19:59Z
项目社区:https://github.com/macif-dev/ssl_pinning_plugin

开源协议:Apache License 2.0

下载


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* required
  • httpMethod : HttpMethod enum [HttpMethod.Get || HttpMethod.Head] (default : HttpMethod.Get) * required
  • headerHttp : Map<String, String>
  • sha : SHA enum [SHA.SHA1 || SHA.SHA256] * required
  • allowedSHAFingerprints : List<String> v
  • timeout : int * required

Usage :

await SslPinningPlugin.check(serverURL: url, httpMethod: HttpMethod.Get, 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.