home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD1.iso
/
GFX
/
Converter
/
PTC-AEAO.LZX
/
AddOn.lha
/
POST
/
GhostScript
/
data
/
decrypt.ps
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-03-09
|
295 b
|
14 lines
% Decrypt an eexec-encoded file.
(t.in) (r) file /in exch def
(t.out) (w) file /out exch def
256 string /buf exch def
55665 % eexec encryption seed
{ in buf readhexstring /more exch def
dup .type1decrypt out exch writestring
more not { exit } if
} loop
in closefile
out closefile
quit