mirror of
https://github.com/martravi/wiiqt6.git
synced 2025-02-17 03:56:23 +01:00
![giantpune@gmail.com](/assets/img/avatar_default.png)
* add fakesigning stuff to the tmd & ticket classes * add functions for changing the tmd & ticket classes ( size, hash, tid... ) * allow replacing contents in wads ( untested ) * other little bug fixes i forgot git-svn-id: http://wiiqt.googlecode.com/svn/trunk@10 389f4c8b-5dfe-645f-db0e-df882bc27289
46 lines
1.3 KiB
C
46 lines
1.3 KiB
C
#ifndef TOOLS_H
|
|
#define TOOLS_H
|
|
#include "includes.h"
|
|
|
|
#define RU(x,n) (-(-(x) & -(n))) //round up
|
|
|
|
#define MIN( x, y ) ( ( x ) < ( y ) ? ( x ) : ( y ) )
|
|
#define MAX( x, y ) ( ( x ) > ( y ) ? ( x ) : ( y ) )
|
|
|
|
void hexdump( const void *d, int len );
|
|
void hexdump( const QByteArray &d, int from = 0, int len = -1 );
|
|
|
|
void hexdump12( const void *d, int len );
|
|
void hexdump12( const QByteArray &d, int from = 0, int len = -1 );
|
|
|
|
//simplified functions for crypto shit
|
|
void AesSetKey( const QByteArray key );
|
|
QByteArray AesDecrypt( quint16 index, const QByteArray source );
|
|
QByteArray AesEncrypt( quint16 index, const QByteArray source );
|
|
|
|
QByteArray GetSha1( QByteArray stuff );
|
|
|
|
//get a padded version of the given buffer
|
|
QByteArray PaddedByteArray( const QByteArray &orig, quint32 padTo );
|
|
|
|
//read a file into a bytearray
|
|
QByteArray ReadFile( const QString &path );
|
|
|
|
//save a file to disc
|
|
bool WriteFile( const QString &path, const QByteArray ba );
|
|
|
|
//keep track of the last folder browsed to when looking for files
|
|
extern QString currentDir;
|
|
|
|
//folder used to cache stuff downloaded from NUS so duplicate titles dont need to be downloaded
|
|
extern QString cachePath;
|
|
|
|
//folder to use as the base path for the nand
|
|
extern QString nandPath;
|
|
|
|
#define CERTS_DAT_SIZE 2560
|
|
extern const quint8 certs_dat[ CERTS_DAT_SIZE ];
|
|
extern const quint8 root_dat[];
|
|
|
|
#endif // TOOLS_H
|