Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xdtianyu/neoauthenticator
An enhancement to google Authenticator. Add export/import, lock pattern features.
https://github.com/xdtianyu/neoauthenticator
Last synced: about 1 month ago
JSON representation
An enhancement to google Authenticator. Add export/import, lock pattern features.
- Host: GitHub
- URL: https://github.com/xdtianyu/neoauthenticator
- Owner: xdtianyu
- License: apache-2.0
- Created: 2015-05-24T13:21:33.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-24T15:24:06.000Z (over 9 years ago)
- Last Synced: 2023-04-01T07:51:25.110Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 1.16 MB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
NeoAuthenticator
======================================================NeoAuthenticator is an enhancement to google Authenticator. Add export/import, lock pattern features.
Added Features
--------------
1\. Export and importYou can export and import your keys with password to external storage, the file is encrypted via PBKDF2/AES.
More details: [ExportActivity.java](https://github.com/xdtianyu/NeoAuthenticator/blob/master/AuthenticatorApp/src/main/java/org/xdty/authenticator/ExportActivity.java)
2\. Lock pattern
You can setup a lock pattern to prevent others accessing your authenticator's keys.
More details: [LockPatternSettingActivity.java](https://github.com/xdtianyu/NeoAuthenticator/blob/master/AuthenticatorApp/src/main/java/org/xdty/authenticator/LockPatternSettingActivity.java)
Google Authenticator for Android (open source version)
======================================================
Copyright 2010 Google Inc.https://github.com/google/google-authenticator-android
This project is an older fork of the one on the Play store. It's an older
version that doesn't get changes synced to it from the Play store version.Description
-----------
The Google Authenticator project includes implementations of one-time passcode
generators for several mobile platforms, as well as a pluggable authentication
module (PAM). One-time passcodes are generated using open standards developed by
the [Initiative for Open Authentication (OATH)](http://www.openauthentication.org/)
(which is unrelated to [OAuth](http://oauth.net/ OAuth)).This project contains the Android app. All other apps, and the PAM module, are in
[a separate project](https://github.com/google/google-authenticator).This implementation supports the HMAC-Based One-time Password (HOTP) algorithm
specified in [RFC 4226](https://tools.ietf.org/html/rfc4226) and the Time-based
One-time Password (TOTP) algorithm specified in [RFC 6238](https://tools.ietf.org/html/rfc6238).Further documentation is available in the [Wiki](https://github.com/google/google-authenticator/wiki).