Is it possible to create a password-protected ZIP file with Flutter / Dart?

597

Plugin archive

https://pub.dev/packages/archive

Use this plugin you can do like this:

 final archive = ZipDecoder().decodeBytes(
      _file,
      verify: true,
      password: "your_password", )
Share:
597
Toby
Author by

Toby

Updated on December 31, 2022

Comments

  • Toby
    Toby over 1 year

    I would like to create a ZIP file that is protected with a password.

    Has anyone done this before and can you give me a few tips? I couldn't find a reasonable package on pub.dev.