mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@1 b08762b0-b915-fc4b-9d8c-17b2551a87ff
31 lines
668 B
C
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_
|