https://github.com/rsatrio/key-wrapping-encryption-javascript
Key Wrapping Cryptography Example Using Javascript
https://github.com/rsatrio/key-wrapping-encryption-javascript
asymmetric-cryptography javascript key-wrapping react symmetric-encryption webcrypto webcrypto-api
Last synced: about 2 months ago
JSON representation
Key Wrapping Cryptography Example Using Javascript
- Host: GitHub
- URL: https://github.com/rsatrio/key-wrapping-encryption-javascript
- Owner: rsatrio
- License: mit
- Created: 2022-04-24T12:30:32.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-24T12:57:49.000Z (about 3 years ago)
- Last Synced: 2025-02-15T10:32:33.538Z (4 months ago)
- Topics: asymmetric-cryptography, javascript, key-wrapping, react, symmetric-encryption, webcrypto, webcrypto-api
- Language: JavaScript
- Homepage:
- Size: 151 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Key Wrapping with Javascript
A simple example of Key Wrapping using Javascript. We will wrap AES key with RSA Public Key in this example.
Live application of this can be found in [here](https://adorable-capybara-1fa6ff.netlify.app/)
## Features
- AES Key Wrapping with RSA Public Key## Build
- Install nodejs
- Run this to install required NPM and build the application:```shell
npm install
npm run build
```## Explanation
You can find the detail explanation of KeyWrapping example in [this medium blog](https://mrizkysatrio.medium.com/javascript-key-wrapping-188da1d6e9d0).## Feedback
For feedback, please raise issues in the issue section of the repository. Periodically, I will update the code. Enjoy!!.