GitXplorerGitXplorer
T

Kryptos

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Verified
c85822436eada4882fadde6eba02e89bdde296ab

Create README.md

TTheBotBox committed 6 years ago
Unverified
ad307e5e16096f5fa25ee33388e145700f2bbbc8

Initial commit

TTheBotBox committed 6 years ago

README

The README file for this repository.

Kryptos

Simple Java API for encryption/decryption on Android.

alt_tag

Contents

Features
Implementation
API Usage
Get It On Play Store
To-dos
License

Features

a). Encrypt/decrypt text based on user entered 4 character secret key.
b). 16 character secret key encryptiom/decryption.

Implementation

Library is available on JCenter, simply add the following line in your app build.gradle

implementation'the.bot.box:kryptos:{latest-version}'

where {latest-version} corresponds to latest published version

API Usage

4 character Secret Key

To encrypt text based on user entered 4 character secret key,

String cipher = Kryptos.CIPHER_4("textToCipher","1578");

To decrypt the same cipher text,

String decipher = Kryptos.DECIPHER_4("textToDeCipher", "1578");

Get It On Play Store

To-Dos

License

alt tag

Copyright (c) 2018 TheBotBox

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:

The above copyright notice and this permission notice shall be included in all copies or substantial portions 
of the Software.

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.