Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
RSA.rb is a Ruby library that implements the RSA encryption algorithm and the PKCS#1 cryptography standard.
require 'rsa'
key_pair = RSA::KeyPair.generate(128)
ciphertext = key_pair.encrypt("Hello, world!")
plaintext = key_pair.decrypt(ciphertext)
The recommended installation method is via RubyGems. To install the latest official release of RSA.rb, do:
% [sudo] gem install rsa # Ruby 1.9.1+
% [sudo] gem install backports rsa # Ruby 1.8.x
To get a local working copy of the development repository, do:
% git clone git://github.com/bendiken/rsa.git
Alternatively, you can download the latest development version as a tarball as follows:
% wget http://github.com/bendiken/rsa/tarball/master
Refer to the accompanying {file:CREDITS} file.
.gemspec
, VERSION
or AUTHORS
files. If you need to
change them, do so on your private branch only.CREDITS
file and the corresponding
list in the the README
. Alphabetical order applies.This is free and unencumbered public domain software. For more information, see http://unlicense.org/ or the accompanying {file:UNLICENSE} file.
FAQs
Unknown package
We found that rsa demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.