Ruby
Ruby
RSA Import Public Key
See more RSA Examples
Shows how to select/import a public key for RSA encryption or signature verification.Chilkat Ruby Downloads
require 'chilkat'
success = false
pubKey = Chilkat::CkPublicKey.new()
# In all Chilkat methods expecting a path, you pass either absolute or relative paths.
success = pubKey.LoadFromFile("rsaKeys/myTestRsaPublic.pem")
if (success == false)
print pubKey.lastErrorText() + "\n";
exit
end
rsa = Chilkat::CkRsa.new()
# Tell RSA to use the public key.
rsa.UsePublicKey(pubKey)