mirror of
https://github.com/martravi/wiiqt.git
synced 2024-11-14 21:35:12 +01:00
1313326925
* remove some junk left over from testing
30 lines
614 B
C++
30 lines
614 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 )
|
|
class KeysBin
|
|
{
|
|
public:
|
|
KeysBin( QByteArray stuff = QByteArray() );
|
|
|
|
const QByteArray Otp();
|
|
const QByteArray Seeprom();
|
|
|
|
const QByteArray Boot1Hash();
|
|
const QByteArray CommonKey();
|
|
const QByteArray RngKey();
|
|
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
|