TwlIPL_commit-99/build/tools/acsign/include/acsign_gcd.h
2023-12-16 15:41:34 -05:00

31 lines
668 B
C

#ifndef _ACSIGN_GCD_H_
#define _ACSIGN_GCD_H_
#include "sha.h"
#include "format_sign.h"
#include "format_rom.h"
#include "acsign.h"
#ifdef __cplusplus
extern "C" {
#endif
//
int ACSign_Final(
GCDHeader* header, // ヘッダへのポインタ
void* buffer, // 出力領域
const void* key
);
//
int ACSign_DigestHeader(
void* buffer, // 出力領域
GCDHeader* header // データへのポインタ
);
#ifdef __cplusplus
}
#endif
#endif //_ACSIGN_GCD_H_