home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Overload
/
ShartewareOverload.cdr
/
database
/
trl14db.zip
/
TRLPRG.EXE
/
ENCRYPT.PRG
< prev
next >
Wrap
Text File
|
1990-10-22
|
541b
|
22 lines
***********
* ENCRYPT.PRG
* by Tom Rettig and Leonard Zerman
* Placed in the Public Domain by Tom Rettig Associates, 10/22/1990.
*
* SYNTAX: DO ENCRYPT WITH <expC>, <password>
* RETURN: <expC> of <string> coded according to <password>
* NOTE : Use DECRYPT to view data.
***********
PARAMETERS par1, par2
CALL Trpass WITH par1
CALL Trpass WITH par2
CALL Trexe WITH "ENCRYPT"
CALL Trexe WITH "TRRETCLEN"
IF fox
PRIVATE tr_temp
tr_temp = SUBSTR(tr_retc,1,tr_retn)
RETURN (tr_temp)
ENDIF
* eof encrypt *