henricook / libreotp

A cross-platform OTP app that runs from a 2FAS JSON export and supports grouping
GNU Affero General Public License v3.0
3 stars 0 forks source link

LibreOTP

LibreOTP is a cross-platform desktop OTP code generator. Currently it works exclusively with an exported JSON file from 2FAS. It supports Windows, Mac and Linux and 2FAS features like grouping. Currently only TOTP keys are supported.

This project was borne from necessity. I needed a modern desktop application that would support 2FAS exports including grouping and search on Linux. It's rough, it's ready, but it does exactly what I needed it to do and might be what you need to!

Flutter means this app works on Windows, Mac and Linux.

Contributions and improvements are welcome, open an RFC: issue if you'd like to discuss a plan before getting started.

Preview

Demo Video

Getting Started

  1. Generate an unencrypted export from your 2FAS app and download it to your desktop machine, call it data.json.
    • :bulb: Improvement opportunity: Support encrypted exports
  2. Put this file in a folder called 'LibreOTP' in your system documents directory. This is the hard coded location where the app will search for it e.g. on my linux system that's /home/henri/Documents/LibreOTP/data.json. On other platforms the document directory is:
    • Windows: C:\Users\<Username>\Documents\LibreOTP\data.json
    • MacOS: /Users/<Username>/Documents/LibreOTP/data.json
    • Linux: /home/<Username>/Documents
  3. Download the appropriate binary for your OS from the Releases page
  4. Unpack the zip, it's rough and ready right now but there'll be a folder called 'bundle' in there that you can switch to. On Linux to run the app you'd now do:
    • chmod +x ./LibreOTP
    • ./LibreOTP
  5. Enjoy! And don't forget to :star: Star the repository to encourage further updates.

Limitations

Credit

OTPClient

Core layout of the app is heavily inspired by otpclient which I liked but I found lacked grouping. Being written in C, I didn't find it particularly easy to contribute to either.

Flutter + GPT4o

The Flutter docs are great and along with IntelliJ's starter project meant I got up and running really fast. Coupled with copious amounts of GPTing I went from concept to version 0.1 in just 3 hours with no prior knowledge of Flutter or Dart.

Roadmap / ideas

  1. Supported encrypted dumps so that I don't need to leave my secrets unencrypted on disk
  2. (Big one) Sync with Google Drive
  3. Better installers
  4. Automated release pipeline with tagging and asset generation