This package contains a very basic service that performs RSA encoding and decoding. Please note that this package is just an example for an article.

Maintainers

Package info

github.com/dbeurive/rsa

pkg:composer/dbeurive/rsa

Statistics

Installs: 16

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.0 2016-04-23 15:39 UTC

This package is not auto-updated.

Last update: 2026-03-07 02:07:14 UTC


README

This package contains a very basic service that performs RSA encoding and decoding.

Please note that this package is just an example for an article.

Please note that if you need to generate RSA keys:

openssl genpkey -algorithm RSA -out key.pem -pkeyopt rsa_keygen_bits:2048;
openssl rsa -in key.pem -pubout -out key_pub.pem
openssl rsa -in key.pem -out key_prv.pem

The commands above will generate a public key key_pub.pem and a private key key_prv.pem.