Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7709143
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T00:47:27+00:00 2026-06-01T00:47:27+00:00

I am searching for an algorithm for file encryption/decryption which satisfies the following requirements:

  • 0

I am searching for an algorithm for file encryption/decryption which satisfies the following requirements:

  • Algorithm must be reliable
  • Algorithm should be fast for rather big files
  • Private key can be generated by some parameter (for example, password)
  • Generated private key must be compatible with public key (public key is generated only once and stored in database)

Is there any Ruby implementation of suggested algorithms?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T00:47:29+00:00Added an answer on June 1, 2026 at 12:47 am

    Note Well: As emboss mentions in the comments, this answer is a poor fit for an actual system. Firstly, file encryption should not be carried out using this method (The lib provides AES, for example.). Secondly, this answer does not address any of the wider issues that will also affect how you engineer your solution.

    The original source also goes into more details.

    Ruby can use openssl to do this:

    #!/usr/bin/env ruby
    
    # ENCRYPT
    
    require 'openssl'
    require 'base64'
    
    public_key_file = 'public.pem';
    string = 'Hello World!';
    
    public_key = OpenSSL::PKey::RSA.new(File.read(public_key_file))
    encrypted_string = Base64.encode64(public_key.public_encrypt(string))
    

    And decrypt:

    #!/usr/bin/env ruby
    
    # DECRYPT
    
    require 'openssl'
    require 'base64'
    
    private_key_file = 'private.pem';
    password = 'boost facile'
    
    encrypted_string = %Q{
    ...
    }
    
    private_key = OpenSSL::PKey::RSA.new(File.read(private_key_file),password)
    string = private_key.private_decrypt(Base64.decode64(encrypted_string))
    

    from here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am searching for a fast hash algorithm. Actually, I am trying to build
I'm searching for an algorithm for recalculation position of vectors which defines polygon which
I'm searching for an algorithm to compress small text strings: 50-1000 bytes (i.e. URLs).
I'm searching for an algorithm to calculate the average distance between a point and
I'm searching for an algorithm for Digit summing. Let me outline the basic principle:
I'm studying string searching algorithms now and wondering what algorithm is used for .NET
It is known that google has best searching & indexing algorithm. The also have
For the two string searching algorithms: KMP and suffix tree, which is preferred in
I need help in deciding with search algorithm to use for searching large files.
I am searching for an algorithm that allow me to compute (2^n)%d with n

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.