mirror of
https://github.com/martravi/wiiqt6.git
synced 2024-11-22 13:29:14 +01:00
f3c7feaee5
git-svn-id: http://wiiqt.googlecode.com/svn/trunk@36 389f4c8b-5dfe-645f-db0e-df882bc27289
25 lines
505 B
C++
25 lines
505 B
C++
#ifndef KEYSBIN_H
|
|
#define KEYSBIN_H
|
|
|
|
#include "includes.h"
|
|
|
|
//quick class for grabbing some stuff from a keys.bin from bootmii ( should be 0x400 bytes )
|
|
// TODO - this isnt complete at all
|
|
class KeysBin
|
|
{
|
|
public:
|
|
KeysBin( QByteArray stuff = QByteArray() );
|
|
|
|
const QByteArray NG_ID();
|
|
const QByteArray NG_key_ID();
|
|
const QByteArray NG_Sig();
|
|
const QByteArray NG_Priv();
|
|
const QByteArray NandKey();
|
|
const QByteArray HMac();
|
|
|
|
private:
|
|
QByteArray data;
|
|
};
|
|
|
|
#endif // KEYSBIN_H
|