Truxton create everything hashset
Jump to navigation
Jump to search
This will create a hash set file of every unique hash in Truxton.
Syntax
void truxton_create_everything_hashset( uint64_t truxton_handle, char const * filename );
Parameters
truxton_handle
The handle created by the truxton_create call.
filename
The name of the file where the hashes will be written.
Sample
void save_truxton_hash_set( void )
{
uint64_t truxton = truxton_create();
truxton_create_everything_hashset( truxton, "\\Server\\Master Hash Sets\\Loader01.hashset" );
truxton_destroy( truxton );
}