Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/davidesantangelo/secrypto

simple API for encrypt/decrypt text
https://github.com/davidesantangelo/secrypto

api encryption rails ruby

Last synced: 2 months ago
JSON representation

simple API for encrypt/decrypt text

Awesome Lists containing this project

README

        

# Secrypto

A simple API that allow to encrypt/decrypt text. API store the data encrypted in the database and returns the key to access it.

## getting started

```
git clone https://github.com/davidesantangelo/secrypto.git
cd secrypto & bundle install
rails s
```

## encrypt

```
curl --data "text=i am a ruby developer" https://secrypto.herokuapp.com/api/encrypt
```

## decrypt

```
curl --data "key=" https://secrypto.herokuapp.com/api/decrypt
```
## license

Secrypto app is released under the MIT License.