class KShred

Erase a file in a way that makes recovery impossible -- well, no guarentee of that, but at least as difficult as reasonably possible. More...

Definition#include <kshred.h>
InheritsQObject (qt) [public ]
List of all Methods
Annotated List
Files
Globals
Hierarchy
Index

Public Methods

Signals

Public Static Methods


Detailed Description

Erase a file in a way that makes recovery impossible -- well, no guarentee of that, but at least as difficult as reasonably possible. For this, KShred write several times over the existing file, using different patterns, before deleting it.

 KShred (QString fileName)

KShred

Initialize the class using the name of the file to 'shred'.

Parameters:
fileNamefully qualified name of the file to shred.

 ~KShred ()

~KShred

bool  fill1s ()

fill1s

Writes all 1's over the entire file and flushes the file buffers.

Returns: true on success, false on error (invalid filename or write error)

bool  fill0s ()

fill0s

Writes all 0's over the entire file and flushes the file buffers.

Returns: true on success, false on error (invalid filename or write error)

bool  fillbyte (unsigned int byte)

fillbyte

Writes the specified byte over the entire file and flushes the file buffers.

Parameters:
bytethe value to write over every byte of the file

Returns: true on success, false on error (invalid filename or write error)

bool  fillrandom ()

fillrandom

Writes random bites over the entire file and flushes the file buffers.

Returns: true on success, false on error (invalid filename or write error)

bool  fillpattern (unsigned char *pattern, unsigned int size)

fillpattern

Writes the specified byte array over the entire file and flushes the file buffers.

Parameters:
patternthe value to write over the entire file
sizethe length of the 'pattern' byte array

Returns: true on success, false on error (invalid filename or write error)

bool  shred ()

shred

Shreds a file by writing a series of values over it (uses fill0s, then fill1s, then fillrandom, then fillbyte with 0101..., then fillbyte with 1010....

Returns: true on success, false on error (invalid filename or write error)

bool  shred (QString fileName)

shred

[static]

The simplest method to shred a file. No need to create an instance of the class.

Parameters:
fileNamefully qualified name of the file to shred.

void  processedSize (KIO::filesize_t bytes)

processedSize

[signal]

Shows progress of the shredding.

Parameters:
bytesthe number of bytes written to the file

void  infoMessage (const QString &)

infoMessage

[signal]

Shows a message in the progress dialog

Parameters:
themessage to display