Discussion:
Word File Creation
(too old to reply)
v***@gmail.com
2005-09-12 23:50:22 UTC
Permalink
Hi all,

We are developing an application, which needs us to encrypt a Word
document and decrypt it later before viewing it in Word Application.
Encryption and decryption both work fine. The problem is, we want to
avoid saving the decrypted content as a file on hard disk.

By not saving the decrypted content as a file on hard disk, we can make
sure that a decrypted file is never available on a client's machine
for him/her to make copies from. This is a security measure that we
want to build into our application.

Any help appreciated !!!

Thanks,
Venu Gopal S.R.
Jonathan West
2005-09-13 00:37:49 UTC
Permalink
Word must have a file. The only way I can think of to address this issue
would be to set up a RAMdiak in memory. I haven't messed around with
Ramdisks since the days of DOS and I have no idea whether it is even
possible to create them under Windows.
--
Regards
Jonathan West - Word MVP
www.intelligentdocuments.co.uk
Please reply to the newsgroup
Keep your VBA code safe, sign the ClassicVB petition www.classicvb.org
Post by v***@gmail.com
Hi all,
We are developing an application, which needs us to encrypt a Word
document and decrypt it later before viewing it in Word Application.
Encryption and decryption both work fine. The problem is, we want to
avoid saving the decrypted content as a file on hard disk.
By not saving the decrypted content as a file on hard disk, we can make
sure that a decrypted file is never available on a client's machine
for him/her to make copies from. This is a security measure that we
want to build into our application.
Any help appreciated !!!
Thanks,
Venu Gopal S.R.
Word Heretic
2005-09-13 13:50:30 UTC
Permalink
G'day ***@gmail.com,

This is pointless. When you display the decrypted file there is
nothing to stop your gentle reader doing any of these:

Select all, copy, Open Wordpad, paste

File > Save (as)

File > Print > file

and more. Any reasonably competent user can work around many of the
common blocks used to implement these measures as well. An expert
could 'crack' it in a few hours.

Once a file is decrypted, you have to trust the user, which means
getting them to sign the usual legalese before you arm them with a
password.

Steve Hudson - Word Heretic

steve from wordheretic.com (Email replies require payment)
Without prejudice
Post by v***@gmail.com
Hi all,
We are developing an application, which needs us to encrypt a Word
document and decrypt it later before viewing it in Word Application.
Encryption and decryption both work fine. The problem is, we want to
avoid saving the decrypted content as a file on hard disk.
By not saving the decrypted content as a file on hard disk, we can make
sure that a decrypted file is never available on a client's machine
for him/her to make copies from. This is a security measure that we
want to build into our application.
Any help appreciated !!!
Thanks,
Venu Gopal S.R.
Loading...