https://github.com/ilyayden/snailpass-android-client
SnailPasswordManager - easy password manager program
https://github.com/ilyayden/snailpass-android-client
bad-code-oh-no
Last synced: about 1 year ago
JSON representation
SnailPasswordManager - easy password manager program
- Host: GitHub
- URL: https://github.com/ilyayden/snailpass-android-client
- Owner: IlyaYDen
- Created: 2022-09-24T19:00:22.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-24T15:05:58.000Z (over 2 years ago)
- Last Synced: 2024-01-24T16:25:43.944Z (over 2 years ago)
- Topics: bad-code-oh-no
- Language: Kotlin
- Homepage:
- Size: 50.6 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SnailPass
SnailPass is a simple client-server password manager, that i'm writing with my colleagues to make for ourselves a convenient, custom environment for storing passwords.
Now is proposed to make applications for three platforms. The client for each of the platforms is located in different repositories:
- [Windows](https://github.com/badlocale/SnailPass-Desktop-Client)
- Android (you are here now)
- IOS (repository is still hiden)
The application also has a [server part](https://github.com/rebmanop/SnailPass-REST-API), where user data will be stored, validated and processed.
# How it works
The main idea of the application is storing user's passwords and other information in encrypted form. Encryption is carried out using a symmetric algorithm with a hashed master password as a key. At the same time a key is not stored anywhere and is never transmitted via the network, the user just has to remember it. For this reason, the data can be decrypted only locally and the server stores only the cipher.
#### Cryptographic algorithms
- AES-CBC as a symmetric-key algorithm.
- Pbkdf2 as a key derivation function.
- SHA-512 as a hash function.
#### Libraries and frameworks
Application written using Kotlin, Android API and MVVM and several external libraries:
- Dagger2 as DI container.
- GSON for simplifying JSON boilerplate.
- Retrofit for network.
- Room for manage data.
# Screenshots
testtesttest
Registration

Sign in

Accounts list

Account info
`
Notes list

Note info
