mirror of
https://github.com/hashcat/hashcat.git
synced 2024-10-31 20:48:57 +00:00
82 lines
3.5 KiB
C
82 lines
3.5 KiB
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _EXT_HIPRTC_H
|
|
#define _EXT_HIPRTC_H
|
|
|
|
// start: hiprtc.h
|
|
|
|
typedef enum hiprtcResult {
|
|
HIPRTC_SUCCESS = 0,
|
|
HIPRTC_ERROR_OUT_OF_MEMORY = 1,
|
|
HIPRTC_ERROR_PROGRAM_CREATION_FAILURE = 2,
|
|
HIPRTC_ERROR_INVALID_INPUT = 3,
|
|
HIPRTC_ERROR_INVALID_PROGRAM = 4,
|
|
HIPRTC_ERROR_INVALID_OPTION = 5,
|
|
HIPRTC_ERROR_COMPILATION = 6,
|
|
HIPRTC_ERROR_BUILTIN_OPERATION_FAILURE = 7,
|
|
HIPRTC_ERROR_NO_NAME_EXPRESSIONS_AFTER_COMPILATION = 8,
|
|
HIPRTC_ERROR_NO_LOWERED_NAMES_BEFORE_COMPILATION = 9,
|
|
HIPRTC_ERROR_NAME_EXPRESSION_NOT_VALID = 10,
|
|
HIPRTC_ERROR_INTERNAL_ERROR = 11
|
|
} hiprtcResult;
|
|
|
|
typedef struct _hiprtcProgram* hiprtcProgram;
|
|
|
|
// stop: hiprtc.h
|
|
|
|
#ifdef _WIN32
|
|
#define HIPRTCAPI __stdcall
|
|
#else
|
|
#define HIPRTCAPI
|
|
#endif
|
|
|
|
#define HIPRTC_API_CALL HIPRTCAPI
|
|
|
|
typedef hiprtcResult (HIPRTC_API_CALL *HIPRTC_HIPRTCADDNAMEEXPRESSION) (hiprtcProgram, const char * const);
|
|
typedef hiprtcResult (HIPRTC_API_CALL *HIPRTC_HIPRTCCOMPILEPROGRAM) (hiprtcProgram, int, const char * const *);
|
|
typedef hiprtcResult (HIPRTC_API_CALL *HIPRTC_HIPRTCCREATEPROGRAM) (hiprtcProgram *, const char *, const char *, int, const char * const *, const char * const *);
|
|
typedef hiprtcResult (HIPRTC_API_CALL *HIPRTC_HIPRTCDESTROYPROGRAM) (hiprtcProgram *);
|
|
typedef hiprtcResult (HIPRTC_API_CALL *HIPRTC_HIPRTCGETCODE) (hiprtcProgram, char *);
|
|
typedef hiprtcResult (HIPRTC_API_CALL *HIPRTC_HIPRTCGETCODESIZE) (hiprtcProgram, size_t *);
|
|
typedef hiprtcResult (HIPRTC_API_CALL *HIPRTC_HIPRTCGETLOWEREDNAME) (hiprtcProgram, const char * const, const char **);
|
|
typedef hiprtcResult (HIPRTC_API_CALL *HIPRTC_HIPRTCGETPROGRAMLOG) (hiprtcProgram, char *);
|
|
typedef hiprtcResult (HIPRTC_API_CALL *HIPRTC_HIPRTCGETPROGRAMLOGSIZE) (hiprtcProgram, size_t *);
|
|
typedef const char * (HIPRTC_API_CALL *HIPRTC_HIPRTCGETERRORSTRING) (hiprtcResult);
|
|
|
|
typedef struct hc_hiprtc_lib
|
|
{
|
|
hc_dynlib_t lib;
|
|
|
|
HIPRTC_HIPRTCADDNAMEEXPRESSION hiprtcAddNameExpression;
|
|
HIPRTC_HIPRTCCOMPILEPROGRAM hiprtcCompileProgram;
|
|
HIPRTC_HIPRTCCREATEPROGRAM hiprtcCreateProgram;
|
|
HIPRTC_HIPRTCDESTROYPROGRAM hiprtcDestroyProgram;
|
|
HIPRTC_HIPRTCGETCODE hiprtcGetCode;
|
|
HIPRTC_HIPRTCGETCODESIZE hiprtcGetCodeSize;
|
|
HIPRTC_HIPRTCGETLOWEREDNAME hiprtcGetLoweredName;
|
|
HIPRTC_HIPRTCGETPROGRAMLOG hiprtcGetProgramLog;
|
|
HIPRTC_HIPRTCGETPROGRAMLOGSIZE hiprtcGetProgramLogSize;
|
|
HIPRTC_HIPRTCGETERRORSTRING hiprtcGetErrorString;
|
|
|
|
} hc_hiprtc_lib_t;
|
|
|
|
typedef hc_hiprtc_lib_t HIPRTC_PTR;
|
|
|
|
int hiprtc_make_options_array_from_string (char *string, char **options);
|
|
|
|
int hiprtc_init (void *hashcat_ctx);
|
|
void hiprtc_close (void *hashcat_ctx);
|
|
|
|
int hc_hiprtcCreateProgram (void *hashcat_ctx, hiprtcProgram *prog, const char *src, const char *name, int numHeaders, const char * const *headers, const char * const *includeNames);
|
|
int hc_hiprtcDestroyProgram (void *hashcat_ctx, hiprtcProgram *prog);
|
|
int hc_hiprtcCompileProgram (void *hashcat_ctx, hiprtcProgram prog, int numOptions, const char * const *options);
|
|
int hc_hiprtcGetProgramLogSize (void *hashcat_ctx, hiprtcProgram prog, size_t *logSizeRet);
|
|
int hc_hiprtcGetProgramLog (void *hashcat_ctx, hiprtcProgram prog, char *log);
|
|
int hc_hiprtcGetCodeSize (void *hashcat_ctx, hiprtcProgram prog, size_t *codeSizeRet);
|
|
int hc_hiprtcGetCode (void *hashcat_ctx, hiprtcProgram prog, char *code);
|
|
|
|
#endif // _EXT_HIPRTC_H
|