diff options
Diffstat (limited to 'Master/tlpkg/tlgs/lib/decrypt.ps')
-rw-r--r-- | Master/tlpkg/tlgs/lib/decrypt.ps | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Master/tlpkg/tlgs/lib/decrypt.ps b/Master/tlpkg/tlgs/lib/decrypt.ps deleted file mode 100644 index 92249182885..00000000000 --- a/Master/tlpkg/tlgs/lib/decrypt.ps +++ /dev/null @@ -1,14 +0,0 @@ -%! -% 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 |