Difference between revisions of "TSK Library User's Guide"

From SleuthKitWiki
Jump to: navigation, search
m (Library User's Guide moved to TSK Library User's Guide: Renamed to be more specific (versus Autopsy))
(Replaced content with "Please find all documentation about using the C/C++ library here: http://www.sleuthkit.org/sleuthkit/docs/api-docs/latest/")
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
This guide (which is a work in progress) is for developers that want to use the library part of The Sleuth Kit (TSK) in a program.  TSK has both a static library and a collection of command line tools that use the library.  All of the functionality of the command line tools can be obtained from the library (and it is much more efficient to directly call the library instead of calling the individual tools and parsing the output.
+
Please find all documentation about using the C/C++ library here:  http://www.sleuthkit.org/sleuthkit/docs/api-docs/latest/
 
+
= "Official" Documents =
+
The term official is used very loosely here, but these are the documents that are shipped with TSK or have been published on the [http://www.sleuthkit.org/sleuthkit/ sleuthkit.org] website. Note: Please do not remove links from this section because they could be the only links to the pages on the website.
+
* [http://www.sleuthkit.org/sleuthkit/docs/api-docs/index.html User's Guide]: The API spec has a section in it that is a User's Guide that outlines how to use the library and how to get your build system setup.
+
* [http://www.sleuthkit.org/sleuthkit/docs/api-docs/index.html API Specification]: The API spec is automatically created from the source code and describes the public API functions and the arguments.
+
* [http://www.sleuthkit.org/support.php Support]: If you have questions, find bugs, or want to contribute patches then refer to the TSK support page for details on where to send questions or submit bugs and patches.
+
 
+
 
+
 
+
= "External" Documents =
+
These are documents that others have written on using the TSK library
+
* (to be created...)
+

Latest revision as of 20:25, 13 February 2020

Please find all documentation about using the C/C++ library here: http://www.sleuthkit.org/sleuthkit/docs/api-docs/latest/