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 4021462
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T10:21:17+00:00 2026-05-20T10:21:17+00:00

Does anyone know if ruby implements something similar to the openssl_seal function from PHP?

  • 0

Does anyone know if ruby implements something similar to the openssl_seal function from PHP? I’d like to be able to interact with a server running a modified implementation of this answer. The PHP solution is pretty simple and it’d be great if I could find something for Ruby to do the same.

Somebody was looking for the same for python a year ago, but didn’t find anything.

  • 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-05-20T10:21:18+00:00Added an answer on May 20, 2026 at 10:21 am

    EVP_Seal does simple wrapping with RSA so you can do it manually with OpenSSL features.

    Here’s a PHP script that does seal with 1 cert:

    <?php
    $pubkey = openssl_pkey_get_public(file_get_contents('selfcert.pem'));
    
    $message = 'hello,world';
    $cipher_text = NULL;
    
    $keys = NULL;
    openssl_seal($message, $cipher_text, $keys, array($pubkey));
    
    $file = fopen('wrapped.bin', 'wb');
    fwrite($file, $keys[0]);
    fclose($file);
    
    $file = fopen('data.bin', 'wb');
    fwrite($file, $cipher_text);
    fclose($file);
    ?>
    

    and a Ruby script that unseal it:

    require 'openssl'
    
    wrapped = File.read('wrapped.bin')
    cipher_text = File.read('data.bin')
    
    privkey = OpenSSL::PKey::RSA.new(File.read('privkey.pem'))
    key = privkey.private_decrypt(wrapped)
    
    cipher = OpenSSL::Cipher.new('rc4')
    cipher.decrypt
    cipher.key = key
    
    p cipher.update(cipher_text) + cipher.final
    

    You can do ‘seal’ with Ruby as well but creating secure session key (RC4 key for this example) is rather difficult so you’d better not try to do by yourself.

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

Sidebar

Related Questions

Does anyone know a good solution for implementing a function similar to Ruby's timeout
Does anyone know of an existing ruby implementation of a read/write lock - http://en.wikipedia.org/wiki/Readers-writer_lock
Does anyone know of a good dictionary API or ruby library to lookup the
Does anyone know the function of the command vmware-vim-cmd vimsvc/connect (vimid). I thought that
Does anyone know how to add a generic principal to the HTTPContext from the
Does anyone know how to get IntelliSense to work reliably when working in C/C++
Does anyone know how to transform a enum value to a human readable value?
Does anyone know of a good Command Prompt replacement? I've tried bash/Cygwin, but that
Does anyone know of a FOSS Python lib for generating Identicons ? I've looked,
Does anyone know of any existing packages or libraries that can be used to

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.