RE: Data encryption in Oracle 7.x

2001-05-22 Thread Christopher Spence
Must say, the DBMS_OBFUCSICATION_TOOLKIT is actually quite fast. I would highly agree with Jared's recommendation. I have a few PL/SQL procedures I made that call this package to handle encrypting passwords for logins and such and it works really well. -Original Message- Sent: Monday,

Re: Data encryption in Oracle 7.x

2001-05-21 Thread Jared Still
Take a look at my article on encryption on Oracle. It can be found at www.cybcon.com/~jkstill/util It has some solutions ( such as RC4 ) that can be implemented on Oracle 7. There's also a Blowfish implementation there courtesy of Craig Munday. Keep one thing in mind: encryption via PL/SQL

Re: data encryption

2001-05-03 Thread Stefan Jahnke
Andor, Gyula schrieb: Hi Gurus ! Is there any standard method to encrypt data? We are making an application that uses application-level privilege system, so we should store passwords for users. Of course we want to store encrypted passwords, but we don't know if is there an existing way

RE: data encryption

2001-05-03 Thread Boivin, Patrice J
PROTECTED]] Sent: Thursday, May 03, 2001 8:30 AM To: Multiple recipients of list ORACLE-L Subject:Re: data encryption Andor, Gyula schrieb: Hi Gurus ! Is there any standard method to encrypt data? We are making

RE: data encryption

2001-05-03 Thread Andor, Gyula
you can always go with the UNIX crypt() function. That works pretty well ;). And what colud we use on WinNT? -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Andor, Gyula INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051

Re: data encryption

2001-05-03 Thread Oliver Artelt
drop table emp; create table emp( EMPNO number primary key, FIRSTNAME VARCHAR2(30), SURNAME VARCHAR2(30), PASSWORD CHAR(32), PHONE VARCHAR2(32) ); create or replace trigger emp_encryptpassword before insert or update of password on emp for

Re: data encryption

2001-05-03 Thread Jared Still
I wrote an article on this that may be of use to you. www.cybcon.com/~jkstill/util Jared On Thursday 03 May 2001 02:35, Andor, Gyula wrote: Hi Gurus ! Is there any standard method to encrypt data? We are making an application that uses application-level privilege system, so we should