diff options
Diffstat (limited to 'Master/xemtex/gslib/decrypt.ps')
-rw-r--r-- | Master/xemtex/gslib/decrypt.ps | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Master/xemtex/gslib/decrypt.ps b/Master/xemtex/gslib/decrypt.ps new file mode 100644 index 00000000000..51343a422e8 --- /dev/null +++ b/Master/xemtex/gslib/decrypt.ps @@ -0,0 +1,14 @@ +% Decrypt an eexec-encoded file.
+% $Id: decrypt.ps,v 1.1.6.1 2002/04/10 09:22:58 giles Exp $
+
+(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
|