Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clement-joye/rsakey
Encrypt with private RSA key and decrypt with public key
https://github.com/clement-joye/rsakey
Last synced: 25 days ago
JSON representation
Encrypt with private RSA key and decrypt with public key
- Host: GitHub
- URL: https://github.com/clement-joye/rsakey
- Owner: clement-joye
- Created: 2024-03-23T22:34:09.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-03-23T22:42:50.000Z (11 months ago)
- Last Synced: 2024-11-11T15:50:13.470Z (3 months ago)
- Language: C#
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Description
Encrypt with private RSA key and decrypt with public key# Generate RSA key
Open a terminal :
> openssl genrsa -out pem_private.pem 1024
> openssl rsa -in pem_private.pem -pubout > pem_public.pemIf openssl is not installed on your machine, use the one that comes with Git `C:\Program Files\Git\usr\bin>`