Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Encryption software

RE: Encryption software

From: Kevin Lange <kgel_at_ppoone.com>
Date: Mon, 30 Jul 2001 11:50:58 -0700
Message-ID: <F001.003591CE.20010730111618@fatcity.com>

This may not be what you want but its simple.

On a unix box you can use the crypt command to encrypt a file to a key

cat file.name | crypt cipher_key > new_file.name

This creates a file called new_file.name that has been encrypted to the key cipher_key.

After you send the file to its destination you can then unencrypt it with the same key back to its original file

cat new_file.name | crypt cipher_key > file.name

This will unencrypt new_file.name into file.name using the encryption key cipher_key.

We use it to hide our Oracle passwords and I have tested it on binary files as well as text files. It does work.

-----Original Message-----
[mailto:Witold.Iwaniec_at_atl.bluecross.ca] Sent: Monday, July 30, 2001 1:51 PM
To: Multiple recipients of list ORACLE-L

Hi

We are looking for a product that can be used to encrypt an Oracle report. In
short a process will run a report, the file will be encrypted, and sent by email. And we would like to be able to use the product from command line so that
the entire process can run automatically.

I have already looked at products from PGP but the only product that can be used
with the command line option is PGP E-business server for about $7000. The price
is way too high for the volume that we will have. I started to look at other products and found a few....

Has anyone used an encryption product and can share experience, good and bad?

Thanks

Witold

--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author:
  INET: Witold.Iwaniec_at_atl.bluecross.ca

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: Kevin Lange
  INET: kgel_at_ppoone.com
Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Mon Jul 30 2001 - 13:50:58 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US