Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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.