Tagged Questions
0
votes
0answers
41 views
Decrypt a string in Ruby based on VB source
I have an original VB project that decodes a string using (roughly) the following code:
Private TripleDes As New TripleDESCryptoServiceProvider
key = ...
0
votes
1answer
32 views
Openssl CMS encrypt in ruby
I have a task which requires encrypting a big chunk of data in ruby. Encryption should be done as follows.
Generate a random key.
Encrypt the data with generated random key and in AES_256_CBC ...
-1
votes
1answer
38 views
Creating an encrypted save file
I'm trying to make a game in Ruby, and my latest addition is to save files, however, I'm having a major problem with encrypting them.
I already got the saving and loading methods set up, but I don't ...
1
vote
1answer
37 views
Convert OpenSSL IV to hex?
I'm working on a tool that applies AES-128 encryption to HLS streams. Here is my Ruby code so far:
aes = OpenSSL::Cipher::AES.new(128, :CBC)
aes.encrypt
aes_key = aes.random_key
aes_iv = ...
1
vote
2answers
150 views
Open source AES-128 encryption for HLS?
Apple has some really nice tools to segmenting solid media files to HLS and adding AES-128 encryption. However, they only run on Mac's and thus aren't very useful in a typical cloud environment where ...
1
vote
0answers
126 views
SJCL AES-128-CCM decryption in Ruby
I am trying to implement the SJCL decryption of aes-128-ccm encrypted strings in Ruby. After reading a similar question I see that this should be supported in newer versions of the OpenSSL library, ...
6
votes
1answer
116 views
Verifying Django Password in Ruby on Rails gives non-matching password
I am rewriting a Django app in Ruby on Rails and want to preserve the old passwords for users.
Django uses PBKDF2SHA1 as the encryption mechanism. So one encrypted password I have is this
...
1
vote
1answer
88 views
Why do I get different RSA encrypted files between Ruby and command-line OpenSSL?
I'm trying to test the interoperability of openssl when used in Ruby on one side, and on the command line on the other side.
I generated a RSA certificate and extracted its public key this way:
...
1
vote
0answers
76 views
Encryption of sensitive data - DataMapper + Sinatra
All the time I read about web services that defend user data by encrypting everything. In case of theft of the database, everything is safe (provided we assume all the usual stuff of cryptography).
...
2
votes
1answer
92 views
Zip and Encrypt Files in memory Ruby/Rails
I was trying to zip a few files and password protect them.
The catch here is I cannot save the file on the disk.
I tried using Rubyzip. But seems like it doesn't support file encryption.
I tried ...
3
votes
0answers
97 views
Verifying signature of non-hashed data with Ruby OpenSSL
I have an RSA public key, some data and a signature of that data. I need to verify the signature. However, the signature is not of a digest of the data, but of the entire data. (The data itself is ...
1
vote
0answers
159 views
Encrypt / Decrypt images (w/o temporary files)
I have for example 10 images. I want them all in a single file (like gzipping them into a single file or somehow put them into a .dat file). The encryption doesn't need to be done through ruby because ...
2
votes
1answer
167 views
Why can't I make “OpenSSL with Ruby” and “Command line OpenSSL” interoperable?
While trying to setup an interoperable encryption system, I met a weird situation during a light "proof-of-concept".
I wrote the following code in Ruby to:
create an encrypted file from a dummy ...
0
votes
2answers
50 views
DES3 and differences between notations
I want to decrypt some DES3 encrypted messages from other aplication. The problem is, that ruby uses backslash notation, which looks like that:
\xE7B8\xCF\xFC\x9Fu\fkΖ\xB3\u001As\x93\xFF
and I'm ...
1
vote
2answers
80 views
Ruby: Time-based encrypted key?
I have a URL that tracks clicks and I want to prevent users from sharing that URL.
So, the idea I had was to create a unique URL that has a string that's some sort of encrypted timestamp (with a ...
0
votes
1answer
79 views
Not able to Decrypt string using RSA.rb: RSA Encryption for Ruby
I have to encrypt a particular field value and store in DB. I have used RSA Encryption for Ruby. I was able to encrypt and save it, but then while decrypting it back, i am facing problem. What i have ...
0
votes
3answers
88 views
Ruby require File (not file)
I have an encrypted file file = File.new("encrypted.file", "r") that I would like to require in Ruby after decryption. I do not want to decrypt, save, require, and delete the file.
What I do now is:
...
5
votes
3answers
230 views
How to fully encrypt data in Ruby using Private Key encryption?
First, some info on our system, which is basically an eTendering solution for the construction industry.
So:
List item
Our system has multiple companies
Each company has multiple users
Each company ...
5
votes
1answer
504 views
Decryption of AES created with sjcl.js in ruby
Hi so lets assume that client-side has a key that is not transfered via the same channel as the encrypted data.
What I am trying to accomplish is to decrypt the result of Stanford Javascript Crypto ...
-2
votes
2answers
382 views
Perl AES vs Ruby AES
I cannot get Perl and Ruby to agree on CBC AES:
Perl
use Crypt::CBC;
use MIME::Base64::Perl;
my $cipher = Crypt::CBC->new(
-key => 'd2cb415e067c7b13',
-iv ...
1
vote
2answers
435 views
Java vs Ruby HMAC SHA256 don't agree [closed]
I can't get Ruby and Java to agree on a HMAC:
Ruby:
hmac_key = "my hmac key" #this is THE REAL KEY
msg = ...
0
votes
2answers
259 views
trying to decrypt attr_encrypted stored value from Java
I have a rails application that encrypts (with attr_encrypted) 2 fields in one of the models.
Another part of my process, which is not the web-application needs to perform some tasks using this data ...
0
votes
0answers
56 views
Encrypting data - rails + attachment_fu
We've been using attachment_fu to upload files into our application. We now have to be able to encrypt uploaded data using AES. We use Rails 2.3.8 and Ruby 1.8.7. Attachment_fu is being used to check ...
1
vote
0answers
341 views
bad decrypt error in ruby
While executing the cipher.final, It says bad decrypt error. I tried to find out the problem.But,I can't find . Can you tell what is wrong with my code?
Here is my code:
require 'openssl'
require ...
2
votes
1answer
373 views
Secure sensitive data (credit card) on RoR
Which are the best practice to store a credit card and billing information from my clients on my RoR application?
Actually I'm working with ruby 1.9.2, Rails 3.2.3 and Im thinking to deploy my app in ...
2
votes
2answers
150 views
tripledes encryption and decryption using openpgp gem in ruby
I need to do the triple DES encryption and decryption in ruby. Whether I can use openpgp gem
Or any other dedicated gem is there for doing the triple DES encryption /decryption.
Please suggest me . ...
1
vote
1answer
135 views
which redis datatype is suitable for storing users?
I am building an authentication system in ruby, and using redis for storing users' access data. I like to know which of redis datatypes is more suitable to use?
1
vote
1answer
110 views
AS3 - Ruby encrypted communication?
I need a proven example to show how its possible to encrypt a string in AS3 and decrypt it in Ruby and vice versa ?, I found articles in PHP, but, I didn't find any in Ruby.
Can some one help by ...
0
votes
1answer
307 views
Encrypting to AES256 CBC in PHP with a 40 character key
I'm having a bit of trouble trying to wrap my head around mcrypt_cbc. I have a 40 character key (OAuth key - doing the encryption/signing manually instead of using an OAuth library) to use, but I'm ...
0
votes
1answer
73 views
Tax File Number Encryption
I'm currently writing an app where I have to store a persons Tax File Number (Australia) securely. Currently it stores in plain text and only shows the last few digits to a user.
What would the best ...
0
votes
0answers
162 views
OpenSSL Cipher Over a Network
I'm sending ciphers over the network and verifying that they can be decrypted before sending them out and they consistently come out of the test as functioning properly, yet when they get sent over ...
1
vote
2answers
270 views
Can't create (AS3) compatible blowfish string in Ruby
I'm using Ruby to try and encrypt a string which will be stored in a database and read/decrypted by a Flash/Actionscript app.
The app uses this blowfish implementation.
I have tried both the ...
1
vote
0answers
84 views
Encrypting retrieved data from Selenium/Watir
When using Selenium (or Watir) as a Web data extractor, is there a way to encrypt each circulating flow between Websites and extractor in order to avoid any kind of "man-in-the-middle" attacks?
1
vote
3answers
1k views
How to encode encrypted data between iOS Objective-C app and Ruby on Rails?
I'm working on an iOS and Ruby on Rails application and need to transmit data encrypted from the iOS app to the Ruby on Rails application. My challenge is how to encode the data in Objective-C in a ...
2
votes
1answer
251 views
How can I asymmetrically encrypt data using OpenPGP with Ruby?
This feels like it should be dead simple, yet I'm not having any luck.
The scenario is this: I have a public *.asc key file. I want to use this file (not my personal keyring) to encrypt data on a ...
5
votes
1answer
522 views
Encrypt in Ruby and Decrypt in Java - Why is it not working?
What am I doing wrong? I expected the Java program to print "private". My goal is to try to write the MessageEncryptor.decrypt ruby method in Java.
Ruby encryption (most code was taken from ...
3
votes
2answers
924 views
How to encrypt files with Ruby?
I need to write a simple tool which encrypts/decrypts files.
I guess the best way is to use OpenSSL:
Generate a key:
openssl rand -base64 2048 > secret_key
Encrypt a file:
openssl aes-256-cbc ...
1
vote
1answer
1k views
Encrypt by “DES-EDE3-CBC” in ruby and decrypt in Java
I am trying to encrypt data by the cipher "DES-EDE3-CBC" in Ruby, then decrypt the encrypted data in Java.
Here is the code in Ruby I do the encrypting:
require 'digest'
require 'openssl'
require ...
2
votes
2answers
157 views
Ruby on Rail project encryption software or method?
I am evaluating to migrate to Ruby (Ruby on Rails) from PHP. One big concern I have is about the project encryption.
Currently in PHP I encrypt the projects before giving it to the clients by using ...
8
votes
1answer
401 views
Transforming Ruby code from apple documentation (iPhoneOTAConfiguration) to Java
I am working web application for iOS MDM.
In that, payload within mobileconfig is to be encrypted before sending to device.
Apple documentation givex following code as example, its in Ruby and working ...
2
votes
1answer
226 views
Implementation of PBEWithMD5AndDES in Ruby
I'm trying to get a ruby implementation of an encryption lib that's apparently popular in the Java world -- PBEWithMD5AndDES
Does anyone know how to use openssl or another open source gem to perform ...
1
vote
1answer
499 views
Blowfish encrypted string becomes gibberish
I need to communicate with an API that requires the request to be encoded in Blowfish and Base64.
In my custom library I start off with:
# encoding: utf-8
require "base64"
require 'crypt/blowfish'
...
0
votes
1answer
166 views
encryption in javascript and decryption in Ruby
i need to encrypt a string in a client using javascript
and need to decrypt it in a Ruby on Rails Server.
i want to use AES.
What are the best couple of script/library/method to do this?
0
votes
1answer
73 views
Ruby BCrypt returning numbers
I am using BCrypt in my RoR and I am getting numbers instead of the hexadecimal representation I am used to. Here is the criminal code.
username = params[:username]
password = params[:password]
...
0
votes
0answers
131 views
Encrypt in PHP and Decrypt in Ruby
I want to encrypt some data in PHP, and send it to a Ruby server which decrypts it and after that sends a response message. After searching all over the Internet for a solution, but almost all of them ...
0
votes
1answer
1k views
PHP (mcrypt_encrypt) Ruby (AES-256-CBC) Encryption Different Results
I have been trying to encrypt a string in PHP and Ruby using the same key and iv but I always got different results.
Below is the PHP Code
$data = "This string needs to be encrypted";
$key = ...
0
votes
2answers
657 views
Ruby on Rails Decryption
The following function works perfect in PHP. How can it be translated in Ruby on Rails.
Please note that both privateKey and iv are 32 characters long.
mcrypt_decrypt(MCRYPT_RIJNDAEL_256, ...
0
votes
1answer
180 views
Ruby on Rails Decryption mcrypt_decrypt
The following function works perfect in PHP. How can it be translated in Ruby on Rails.
Please note that both privateKey and iv are 32 characters long.
mcrypt_decrypt(MCRYPT_RIJNDAEL_256, ...
3
votes
1answer
476 views
How to decrypt PGP encrypted file with Ruby gpgme
I can't find a single example of how to do this. I have a PGP encrypted XLS file and a PGP key. Here's is my code that returns an empty string:
require 'rubygems'
require 'gpgme'
def passfunc(obj, ...
1
vote
1answer
280 views
How is write PHP mcrypt_ecb decrypt in Ruby?
public static function decryptSessionByDES($str,$key_str){
$decoded =base64_decode($str);
$iv = substr($key_str, 0, mcrypt_get_iv_size(MCRYPT_3DES,MCRYPT_MODE_ECB));
return ...


