Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/davidesantangelo/secrypto
- Owner: davidesantangelo
- License: mit
- Created: 2016-11-28T09:43:46.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-14T08:18:51.000Z (about 2 years ago)
- Last Synced: 2024-05-01T20:55:37.764Z (9 months ago)
- Topics: api, encryption, rails, ruby
- Language: Ruby
- Homepage:
- Size: 52.7 KB
- Stars: 9
- Watchers: 4
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LiCENSE
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
```
## licenseSecrypto app is released under the MIT License.