Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryan-berger/microencrypt
An HTTP microservice that asymmetrically encrypts any data given to it
https://github.com/ryan-berger/microencrypt
encrypted-data golang microservice scraper
Last synced: about 2 months ago
JSON representation
An HTTP microservice that asymmetrically encrypts any data given to it
- Host: GitHub
- URL: https://github.com/ryan-berger/microencrypt
- Owner: ryan-berger
- License: mit
- Created: 2018-02-25T06:25:39.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-07T20:08:54.000Z (over 6 years ago)
- Last Synced: 2024-06-20T10:07:07.011Z (7 months ago)
- Topics: encrypted-data, golang, microservice, scraper
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Microencrypt
## What:
An http "microservice" that will asymmetrically encrypt whatever you hand it using
Kevin Burke's [bcrypt](https://github.com/kevinburke/nacl) wrapper
## Why:
I have written this code way too many times for scrapers. This endpoint is super
useful when you need to encrypt user data (username/password) for scrapers, but
you don't want to store it server side. That way the server can encrypt it for
the client, and on each request you can send the encrypted data to the server
which can then use it to get the data from the site that you are scraping
## Contribution:
Please submit a pull request if you notice any possible issues with this
repo and write a test to accompany the issue so that it is easily reproducible,
and to ensure that the service is always working.