https://github.com/bjyurkovich/mycrypto
https://github.com/bjyurkovich/mycrypto
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bjyurkovich/mycrypto
- Owner: bjyurkovich
- Created: 2018-09-30T20:22:19.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-01T00:13:44.000Z (over 6 years ago)
- Last Synced: 2025-03-14T12:45:08.621Z (3 months ago)
- Language: JavaScript
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mycrypto
Swagger: [https://bjcrypto.herokuapp.com/](https://bjcrypto.herokuapp.com/)
# RSA
`POST https://bjcrypto.herokuapp.com/v1/rsa-create-certificates`
```json
{
"id": "id",
"passphrase": "passphrase",
"keySize": 1024
}
````POST https://bjcrypto.herokuapp.com/v1/rsa-encrypt/id`
```json
{
"text": "this is some text that is encryptable"
}
```# AES
`https://bjcrypto.herokuapp.com/v1/aes-test/`
```json
{
"text": "test",
"key": "mykey"
}
```