Skip to content
This repository has been archived by the owner on Jan 9, 2018. It is now read-only.

Added reference to AESCrypt-Android #6

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ AESCrypt is a simple to use, opinionated AES encryption / decryption Ruby gem th

AESCrypt uses the AES-256-CBC cipher and encodes the encrypted data with Base64.

A corresponding gem to easily handle AES encryption / decryption in Objective-C is available at http://github.com/Gurpartap/AESCrypt-ObjC.
A corresponding gem to easily handle AES encryption / decryption in Objective-C is available at http://github.com/Gurpartap/AESCrypt-ObjC or Android/Java at https://github.com/scottyab/AESCrypt-Android created by [Scott Alexander-Bown](https://github.com/scottyab)

## Installation

Expand Down Expand Up @@ -62,6 +62,24 @@ Decrypting

See the Objective-C class README at http://github.com/Gurpartap/AESCrypt-ObjC for more details.

## Corresponding usage in Android/Java
The AESCrypt Java class, available at https://github.com/scottyab/AESCrypt-Android

Here's how you would use the AESCrypt Java class:

String message = "top secret message";
String password = "p4ssw0rd";

Encrypting

String encryptedData = AESCrypt.encrypt(password, message);

Decrypting

String message = AESCrypt.decrypt(password, encryptedData);



## License

Copyright (c) 2012 Gurpartap Singh
Expand Down