General OpenScap functions and types.
- Author
- Lukas Kuklinek lkukl.nosp@m.inek.nosp@m.@redh.nosp@m.at.c.nosp@m.om
|
void | oscap_init (void) |
| Initialize OpenSCAP library. More...
|
|
void | oscap_cleanup (void) |
| Release library internal caches. More...
|
|
const char * | oscap_get_version (void) |
| Get version of the OpenSCAP library.
|
|
const char * | oscap_document_type_to_string (oscap_document_type_t type) |
| Convert oscap_document_type_t constant to human readable (english) representation. More...
|
|
int | oscap_validate_document (const char *xmlfile, oscap_document_type_t doctype, const char *version, xml_reporter reporter, void *arg) |
| Validate a SCAP document file against a XML schema. More...
|
|
int | oscap_schematron_validate_document (const char *xmlfile, oscap_document_type_t doctype, const char *version, const char *outfile) |
| Validate a SCAP document file against schematron rules. More...
|
|
int | oscap_apply_xslt (const char *xmlfile, const char *xsltfile, const char *outfile, const char **params) |
| Apply a XSLT stylesheet to a XML file. More...
|
|
const char * | oscap_path_to_schemas (void) |
| Function returns path used to locate OpenSCAP XML schemas.
|
|
const char * | oscap_path_to_schematron (void) |
| Function returns path used to locate OpenSCAP Schematron files. More...
|
|
const char * | oscap_path_to_cpe (void) |
| Function returns path used to locate OpenSCAP Default CPE files.
|
|
int | oscap_determine_document_type (const char *document, oscap_document_type_t *doc_type) |
| Determine document type. More...
|
|