Я исправил код
Оказывается, мне просто нужна была эта строка:
rsa_private_key = OpenSSL::PKey::RSA.new(pri)
Полный рабочий код
require 'openssl'
require 'base64'
if File.exist?("./pub_key.txt")
#Keys are strings, I can encrypt but not decrypt a message
pri = File.read("./pri_key.txt")
pub = File.read("./pub_key.txt")
puts pub
string = 'Hello World!';
rsa_public_key = OpenSSL::PKey::RSA.new(pub)
rsa_private_key = OpenSSL::PKey::RSA.new(pri)
encrypted_string = Base64.encode64(rsa_public_key.public_encrypt(string))
puts encrypted_string
# This throws an error
# Because 'pri' is a string, don't know how to cast it to the right type
my_string = rsa_private_key .private_decrypt(Base64.decode64(encrypted_string))
puts "The decoded message"
puts my_string
end
Спасибо за ваше время!Программирование резиновой утки работает:)