NODE 959a7328Re: Secured RM ? (source)
jps@monad.semcor.com (Jack P. Starrantino)Fri, 15 Dec 1995 23:10:08 +0800
I don't think this will work. When you
> if ( (Pfp = fopen(Pfilename, "wb") ) == NULL)
the file will be truncated. Subsequent writes could be anywhere on the
platter; you're building a new file.
I think you can work this way if you open the file for read/write
access, although I'd be more inclined to take the file name into the
directory and then walk the inodes.
jps
--
Jack P. Starrantino (215) 674-0200 (voice)
SEMCOR, Inc. (215) 443-0474 (fax)
65 West Street Road jps@semcor.com
Suite C-100
Warminster, PA 18974
NODE 84a1a1f1Re: Secured RM ? (source)
Jiri Baum <jirib@sweeney.cs.monash.edu.au>Sun, 17 Dec 1995 12:58:04 +0800
-----BEGIN PGP SIGNED MESSAGE-----
Hello jps@monad.semcor.com (Jack P. Starrantino)
and cypherpunks@toad.com
...
> I think you can work this way if you open the file for read/write
> access, although I'd be more inclined to take the file name into the
> directory and then walk the inodes.
Yuck!
Opening the file for read/write should be ok on all filesystems
where walking the inodes is doable and ok, and will be more portable.
Walking the inodes has the advantage that it won't run out of disk space,
but I suspect confidential files with holes will be rare.
There's no automatic rm that will also delete all backups of the file.
(You are keeping backups, aren't you?)
Hope I'm making sense...
Jiri
- --
If you want an answer, please mail to <jirib@cs.monash.edu.au>.
On sweeney, I may delete without reading!
PGP 463A14D5 (but it's at home so it'll take a day or two)
PGP EF0607F9 (but it's at uni so don't rely on it too much)
-----BEGIN PGP SIGNATURE-----
Version: 2.6.2i
iQCVAwUBMNOcVixV6mvvBgf5AQGrkwQAnyNO9i+U470nlTcjJbu6lTQUNw+8b24L
2rZC/niE0WV9xFXYEQHA8cmFJrpLqp8OcfxZVLU+aYJ6sD2z3ehM5nlT7yoSTxXk
/GSp1DgW8rfu19Ovf7xAe6CBt7/NNo/WNsd6pTev648Dj3tdNBCkqf8IlSu/22qa
FgvShjjz8+Q=
=6ZDm
-----END PGP SIGNATURE-----
NODE a74e28a8Re: Secured RM ? (source)
Ben Holiday <ncognito@gate.net>Sun, 17 Dec 1995 18:37:47 +0800
On Sun, 17 Dec 1995, Jiri Baum wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
>
> There's no automatic rm that will also delete all backups of the file.
> (You are keeping backups, aren't you?)
>
In this particular case what im concerned about is a temporary cleartext
copy of a permanently encrypted document. The cleartext only exists for
about 1-4 seconds, and then is deleted, so backups arent really a
problem..