星火微课系统客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 4 години
123456789101112131415
  1. %!
  2. % Decrypt an eexec-encoded file.
  3. % $Id: decrypt.ps 6300 2005-12-28 19:56:24Z giles $
  4. (t.in) (r) file /in exch def
  5. (t.out) (w) file /out exch def
  6. 256 string /buf exch def
  7. 55665 % eexec encryption seed
  8. { in buf readhexstring /more exch def
  9. dup .type1decrypt out exch writestring
  10. more not { exit } if
  11. } loop
  12. in closefile
  13. out closefile
  14. quit