home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / g / gs252src.zip / GS252 / DECRYPT.PS < prev    next >
Text File  |  1992-05-26  |  294b  |  14 lines

  1. % Decrypt an eexec-encoded file.
  2.  
  3. (t.in) (r) file /in exch def
  4. (t.out) (w) file /out exch def
  5. 256 string /buf exch def
  6. 55665        % eexec encryption seed
  7.  { in buf readhexstring /more exch def
  8.    dup type1decrypt out exch writestring
  9.    more not { exit } if
  10.  } loop
  11. in closefile
  12. out closefile
  13. quit
  14.