Tachtig: decode/dump Wii save files
[svpe-tools.git] / tools.h
blob0bdad0adde315947dac87b52a4e154c238c67a50
1 // Copyright 2007,2008 Segher Boessenkool <segher@kernel.crashing.org>
2 // Licensed under the terms of the GNU GPL, version 2
3 // http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
5 #ifndef _TOOLS_H
6 #define _TOOLS_H
8 // basic data types
9 typedef unsigned char u8;
10 typedef unsigned short u16;
11 typedef unsigned int u32;
12 typedef unsigned long long u64;
14 u32 be32(u8 *p);
15 u64 be64(u8 *p);
16 u64 be34(u8 *p);
18 // bignum
19 int bn_compare(u8 *a, u8 *b, u32 n);
20 void bn_sub_modulus(u8 *a, u8 *N, u32 n);
21 void bn_add(u8 *d, u8 *a, u8 *b, u8 *N, u32 n);
22 void bn_mul(u8 *d, u8 *a, u8 *b, u8 *N, u32 n);
23 void bn_inv(u8 *d, u8 *a, u8 *N, u32 n); // only for prime N
24 void bn_exp(u8 *d, u8 *a, u8 *N, u32 n, u8 *e, u32 en);
26 // crypto
27 void md5(u8 *data, u32 len, u8 *hash);
28 void sha(u8 *data, u32 len, u8 *hash);
29 void get_key(const char *name, u8 *key, u32 len);
30 void aes_cbc_dec(u8 *key, u8 *iv, u8 *in, u32 len, u8 *out);
31 void decrypt_title_key(u8 *title_key_crypted, u8 *title_id, u8 *title_key);
32 int check_cert_chain(u8 *data, u32 data_len, u8 *cert, u32 cert_len);
33 int check_ec(u8 *ng, u8 *ap, u8 *sig, u8 *sig_hash);
34 int check_ecdsa(u8 *Q, u8 *R, u8 *S, u8 *hash);
36 // compression
37 void do_yaz0(u8 *in, u32 in_size, u8 *out, u32 out_size);
39 // error handling
40 void fatal(const char *s);
42 // output formatting
43 void print_bytes(u8 *x, u32 n);
44 void hexdump(u8 *x, u32 n);
46 #endif