lehttp_overrides 1.0.3 copy "lehttp_overrides: ^1.0.3" to clipboard
lehttp_overrides: ^1.0.3 copied to clipboard

A Flutter package to resolve Let's Encrypt SSL certificate problems with Android 7.1.1 and below

lehttp_overrides #

A Flutter package to resolve Let's Encrypt SSL certificate problems with Android 7.1.1 and below

More information here (Italian)

Getting Started #

To enable the fix you need to add this line at the beginning of your project:

import 'package:lehttp_overrides/lehttp_overrides.dart';

void main() {
  if (Platform.isAndroid) {
    HttpOverrides.global = LEHttpOverrides();
  }
  runApp(const MyApp());
}

This works if you are using ISRG Root X1 certificate path by adding ISRG Root X1 CA to certificate store.

This is harmless on Android > 7.1.1 because the system already has it.

An optional parameter of the constructor allowExpiredDSTX3 (defaults: false) allows to accept as valid the DST Root CA X3 expired certificate. OpenSSL >= 1.1 should not trigger this check, but old Android versions still need it.

My suggestion is to leave this disabled and use ISRG Root X1 certiicate path.

23
likes
110
pub points
87%
popularity

Publisher

verified publishernetfarm.it

A Flutter package to resolve Let's Encrypt SSL certificate problems with Android 7.1.1 and below

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

dio, flutter

More

Packages that depend on lehttp_overrides