2017-06-28 08:29:18 +00:00
# andOTP - Android OTP Authenticator
2017-07-05 12:57:49 +00:00
[![Build Status ](https://travis-ci.org/flocke/andOTP.svg?branch=master )](https://travis-ci.org/flocke/andOTP)
2017-07-10 20:06:16 +00:00
[![Current release ](https://img.shields.io/github/release/flocke/andOTP/all.svg )](https://github.com/flocke/andOTP/releases/download/v0.2.0/andOTP_v0.2.0.apk)
2017-07-05 12:57:49 +00:00
2017-06-28 11:17:53 +00:00
![andOTP ](./assets/logo.png )
2015-11-22 00:07:14 +00:00
2017-07-02 15:42:51 +00:00
andOTP is a two-factor authentication App for Android 4.4+.
2015-11-25 23:21:17 +00:00
2015-11-25 23:39:20 +00:00
It implements Time-based One-time Passwords (TOTP) like specified in RFC 6238.
2015-11-25 23:49:03 +00:00
Simply scan the QR code and login with the generated 6-digit code.
2015-11-25 23:27:58 +00:00
2017-06-28 08:29:18 +00:00
This is a fork of the great OTP Authenticator app written by Bruno Bierbaumer,
which has sadly been inactive since 2015. All credit for the original version
goes to Bruno.
2015-11-25 23:27:58 +00:00
2015-11-25 21:54:09 +00:00
## Features:
2017-06-30 16:21:57 +00:00
* Free and Open-Source
* Requires minimal permissions
2017-07-03 11:17:57 +00:00
- Camera access for QR code scanning
- Storage access for import and export of the database
2017-06-30 16:21:57 +00:00
* Encrypted storage
2017-07-14 10:53:29 +00:00
* Plain-text backups
* Encrypted backups using OpenPGP (WIP)
2017-06-30 16:21:57 +00:00
* Sleek minimalistic Material Design
* Great Usability
* Compatible with Google Authenticator
## TODO
* Export the secret key (maybe)
2015-11-25 21:54:09 +00:00
2017-06-28 08:29:18 +00:00
<!--
2015-11-25 22:22:52 +00:00
## Download:
2015-12-20 22:40:21 +00:00
### Google Play:
2015-12-18 11:03:59 +00:00
< a href = "https://play.google.com/store/apps/details?id=net.bierbaumer.otp_authenticator&utm_source=global_co&utm_medium=prtnr&utm_content=Mar2515&utm_campaign=PartBadge&pcampaignid=MKT-AC-global-none-all-co-pr-py-PartBadges-Oct1515-1" > < img width = 250 alt = "Get it on Google Play" src = "https://play.google.com/intl/en_us/badges/images/apps/en-play-badge.png" / > < / a >
2015-12-20 22:40:21 +00:00
### F-Droid:
[OTP Authenticator on F-Droid ](https://f-droid.org/repository/browse/?fdfilter=otp&fdid=net.bierbaumer.otp_authenticator )
2017-06-28 08:29:18 +00:00
-->
2017-06-29 15:10:18 +00:00
## Acknowledgments:
2017-07-05 10:48:47 +00:00
#### Open-source components used:
2017-06-29 15:10:18 +00:00
2017-07-05 11:11:30 +00:00
* [Apache Commons Codec ](https://commons.apache.org/proper/commons-codec/ )
2017-07-13 10:15:54 +00:00
* [LicensesDialog ](https://github.com/PSDev/LicensesDialog )
2017-06-29 15:10:18 +00:00
* [MaterialProgressBar ](https://github.com/DreaminginCodeZH/MaterialProgressBar )
2017-07-14 10:53:29 +00:00
* [OpenPGP API library ](https://github.com/open-keychain/openpgp-api )
2017-06-29 15:10:18 +00:00
* [ZXing Android Embedded ](https://github.com/journeyapps/zxing-android-embedded )
2017-07-05 10:48:47 +00:00
#### Code examples used:
* [Android-ItemTouchHelper-Demo ](https://github.com/iPaulPro/Android-ItemTouchHelper-Demo/tree/master/app/src/main/java/co/paulburke/android/itemtouchhelperdemo/helper )
* [Code Parts from Google's Android Samples ](https://android.googlesource.com/platform/development/+/master/samples/Vault/src/com/example/android/vault )
* [FloatingActionMenuAndroid ](https://github.com/pmahsky/FloatingActionMenuAndroid )
2015-11-22 00:07:14 +00:00
## License:
```
2017-06-28 08:29:18 +00:00
Copyright (C) 2017 Jakob Nixdorf < flocke @ shadowice . org >
2015-11-22 01:31:45 +00:00
Copyright (C) 2015 Bruno Bierbaumer
2017-07-07 08:57:32 +00:00
2015-11-22 00:07:14 +00:00
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in the
Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
2017-07-07 08:57:32 +00:00
2015-11-22 00:07:14 +00:00
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
2017-07-07 08:57:32 +00:00
2015-11-22 00:07:14 +00:00
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
OR OTHER DEALINGS IN THE SOFTWARE.
```