TwlIPL/build/tools/MasterEditorTWL/MasterEditorTWL/keys.h
nishikawa_takeshi 54fc4f5c22 マスタエディタ:各バージョン間でのソース共通化に対応。
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2470 b08762b0-b915-fc4b-9d8c-17b2551a87ff
2008-09-10 07:36:59 +00:00

30 lines
757 B
C++

#pragma once
// 署名用の鍵データの宣言
#include <twl/types.h>
#include <apptype.h>
namespace MasterEditorTWL
{
// 開発機用ROMヘッダ署名鍵
#ifdef METWL_VER_APPTYPE_USER
extern const u8 g_devPubKey_DER[ 0xa2 ];
extern const u8 g_devPrivKey_DER[ 0x263 ];
#endif
#ifdef METWL_VER_APPTYPE_SYSTEM
extern const u8 g_devPubKey_DER_system[ 0xa2 ];
extern const u8 g_devPrivKey_DER_system[ 0x263 ];
#endif
#ifdef METWL_VER_APPTYPE_SECURE
extern const u8 g_devPubKey_DER_secure[ 0xa2 ];
extern const u8 g_devPrivKey_DER_secure[ 0x263 ];
#endif
#ifdef METWL_VER_APPTYPE_LAUNCHER
extern const u8 g_devPubKey_DER_launcher[ 0xa2 ];
extern const u8 g_devPrivKey_DER_launcher[ 0x263 ];
#endif
} // end of namespace MasterEditorTWL