Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[ALLY] Decrypting to a face?

From: tbrownell::yahoo::com at: 11-Apr-2001 3:00

Hello all. Q. How do you decrypt directly to a text face? Using the example in the docs requires "writing" the output to a file, then reading it to the face. Can you "write/binary" to a face? Doc decrypt example... crypt-port: make port! [ scheme: 'crypt algorithm: 'blowfish direction: 'decrypt strength: 128 key: crypt-key padding: true ] open crypt-port insert crypt-port read/binary %outputfile update crypt-port write/binary %inputfile2 copy crypt-port close crypt-port