Displaying 20 results from an estimated 11000 matches similar to: "ezcrypto HELP!!!!"
2005 Dec 17
2
Encrypting files
Anyone know of a good (fast) way to encrypt/decrypt uploaded files in
RoR? I''ve seen this project: http://ezcrypto.rubyforge.org/ but it
only seems to encrypt strings and such. I need to encrypt files once
they are uploaded, then decrypt them when they request the file back.
Any ideas?
Thanks,
Mark
--
Posted via http://www.ruby-forum.com/.
2011 Mar 07
1
blowfish encrypted url in ruby
How to encrypt and decrypt the url using blowfish in ruby?
ex: url=
http://localhost:3000?username=vam&paswd=1234&street=hyd&contact=999999999&company=raymarine&city=hyd&state=UP&country=ZP&zip_code=543211
please help its very urgent.
Thanks in advance - Vam
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to
2009 May 06
4
Encrypting large amounts of text
Hi,
I have an application where I want to be able to encrypt large amounts
of text before storing them to my DB (MySQL Text field - might be
switched to a Blob). I have an idea of how to do this, but was
wondering what the general consensus is within the community regarding
the issue.
I have come across a couple different plug ins/gems (Stringbox,
EzCrypto), but am wondering what other people
2006 Feb 19
2
Asynchronous Encryption?
Hi Railers,
I''m looking for something to do asynchronous encryption - where the encryption
and decryption keys are different. This is for a scenario where I want to be
able to store some information in the database that can only be decrypted in
a different physical location using a secret private key (which will not be
stored on the machine doing the encrypting).
I''m trying
2006 Aug 08
8
executing external code
I''m trying to run some non-ruby code in my rails app and i''m not sure
how to do this. The code i have would take a really long time to port
to ruby and so i''d rather run it as is (its php). What i would like
to have happen is that the code can be invoked as an ajax call. And
just return some data in JSON.
I keep running into a routing failure by actioncontroller and
2006 Mar 07
5
subversion help!
I created a subversion repository on my new vps and i''m trying to setup my
rails app there. However i keep getting this error:
subversion/libsvn_subr/io.c:2516: (apr_err=13)
svn: Can''t create directory ''/home/svnadmin/rapleaf/db/transactions/0-1.txn'':
Permission denied
How do i fix this? I know others have had this before, so i would
appreciate some help.
2006 Mar 08
3
migrations schema_info table, Rails Recipes Bug?
I have the rails recipes book and i was going through the migrations
recipe. Everything seemed to work except for the last part in trying to do
a rake migrate with a migration file version 1 and the schema_info version
set to 0. Without the force attribute, the rake migration fails, as
expected.
So the recipe says to run this:
ruby script/runner
2006 Mar 13
9
apache 1 fastcgi config correct???
I followed this tutorial on the rails wiki about how to get apache with
fastcgi working on a vps machine:
http://wiki.rubyonrails.com/rails/pages/HowtoInstallAndRunRubyOnRailsOnCpanel
In the tutorial it said to add this to the httpd.conf file to get fastcgi
working.
<IfModule mod_fastcgi.c>
FastCgiIpcDir /tmp/fcgi_ipc/
AddHandler fastcgi-script .fcgi
</IfModule>
However
2006 Jun 09
1
crypto-key.rb
Does anyone know how to implement the crypto-key.rb as found on
http://swik.net/Typo/too-biased/Simple+Encryption/ckpz
It allows for encryption and decryption of credit card numbers that
are stored in a database. I am somewhat new to Rails, and I don''t
always know how to use libraries and modules.
Thanks,
will clark // graphic design
www.willclarkdesigns.com/
2006 Apr 09
4
submitting forms help
I cant seem to figure this problem out and i was hoping someone could help
me out.
I have a page with a list of forms. I would like the user to be able to
submit each form individually, or submit them all at once, to a different
action (bascially, one that will do batch processing of all the forms).
Is this possble? Please help.
-------------- next part --------------
An HTML attachment was
2006 Mar 04
12
cross domain ajax
I''m trying to implement a cross domain solution for my rails app. I want
people to be able to fill out a form on their site and the data will be
passed back to my site through ajax, and their site gets updated. I''m
looking for the best way to implement this. I would like to use a JSON
approach like yahoo does, but i''m not sure if it will work.
Though the form is
2013 Apr 09
2
[LLVMdev] get the identifies of the unnamed temporaries from the instruction of LLVM IR
hi, Duncan:
thanks for your patience.
i have tried it.
using instuction: errs()<<i->getOperand(0);
but it prints the address: someting like 0x1139700;
i checked the defination of getOperand() is Value* getOperand( unsigned int
i);
so is there someting i missed?
--
View this message in context:
2009 Apr 24
4
Long string in crypting
I use a solution to crypt a string that I found using OpenSSL. But the
crypted string becomes very long, too long for a varchar 255 to hold it.
What can I do to make it shorter? Or should I just use text as column in
the mysql db?
public_key_file = ''lib/public.pem''
public_key = OpenSSL::PKey::RSA.new(File.read(public_key_file))
@encrypted_string =
2006 Jun 01
5
flash not clearing after display
(Rails 1.1, Ruby 1.8.4)
In the layout for one of my controllers, I have a tag to display a flash
message (copied from AWDWR), like this:
<div id="data">
<% if @flash[:notice] -%>
<div id="notice"><%= @flash[:notice] %></div>
<% end -%>
<%= @content_for_layout %>
</div>
If the
2006 Apr 24
12
setup a staging site?
Hi, i''m wondering how to setup a staging site for my RoR app. Right now i
run webrick on my laptop to develop, then i svn commit my changes to the
production server. However i need to make my development environment
available to others and not just for me on my laptop.
I have RoR setup on a hosted vps server which runs in production
environment. Its on apache 1.3 and mysql. How can i
2007 Jun 13
4
network raid file system/server
hi,
we've a few 10-20 server in a lan each has 4-8 hdd. we'd like to create
one big file server on these server hard disks and we'd like to create
it in a redundant way ie:
- if one (or more) of the hdd or server fails the whole filesystem still
usable and consistent.
- any server in this farm can see the same storage/filesystem.
it's someting a big network raid5-6... storage where
2019 Apr 30
3
HERE document in docker script file
I am trying to use a HERE document in a docker script file to generate a text file but must be doing something wrong since I get a warning message that I did not expect:
EOF: line 6: warning: here-document at line 0 delimited by end-of-file (wanted `EOF')
This is the sample script I am testing in my docker file:
RUN bash -c "$(/bin/echo -e "cat << 'EOF' | tee -a
2006 Mar 08
3
email signup/splash page
Does anyone know the easiest way to put up a splash page where people can
add their email addresses to be notified when the site is ready? I want
regular visitors to be directed to this page. How can i have this and still
be able to test/develop the site?
I know a lot of web apps do this while still developing, so i''m looking for
a solution that i''m sure exists, but i cant
2007 Oct 22
2
VMware not correctly configured for running kernel
Something happened over the weekend power-related on my VMware test
server, and when I came back and restarted my VMware server box
(running CentOS), I got the following message:
"VMware Server is installed, but it has not been (correctly) configured
for the running kernel. To (re-)configure it, invoke the
following command: /usr/bin/vmware-config.pl."
I ran that .pl script, answered
2006 Feb 12
2
Aastra phones and common directory?
Does anyone know if it is possible to upload a common directory to all
Aastra phones (480i, 9133)? Is there someting equivalent to the way Polycom
phones do it?
--
Carlos Chavez
Director de Tecnolog?a
Telecomunicaciones Abiertas de M?xico S.A. de C.V.
Tel: +52-55-91169161 Ext 2001