Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Write Content of Byte Array to file

Status
Not open for further replies.

MinistryCork

Technical User
Oct 14, 2008
6
IE
I have a function which enctypts a srting using the CAPI, the encrpyted string gets stores in a byte array. As the characters of the byte array do not display correctly i was wondering how i can write the content of the array to a file for succesull decryption at a later stage.
 
dim bytes() as byte
open FileName for Binary as #1
put #1, , bytes
close #1
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top