mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
keys.bin support added.
Remove hollywood id from config. Tidy HLE_Device_es.h (maybe) Added const params to crypto stuff.
This commit is contained in:
@ -13,10 +13,10 @@ void bn_add(u8 *d, u8 *a, u8 *b, u8 *N, u32 n);
|
||||
void bn_mul(u8 *d, u8 *a, u8 *b, u8 *N, u32 n);
|
||||
void bn_inv(u8 *d, u8 *a, u8 *N, u32 n); // only for prime N
|
||||
void bn_exp(u8 *d, u8 *a, u8 *N, u32 n, u8 *e, u32 en);
|
||||
void point_mul(u8 *d, u8 *a, u8 *b);
|
||||
void point_mul(u8 *d, const u8 *a, u8 *b);
|
||||
|
||||
void generate_ecdsa(u8 *R, u8 *S, u8 *k, u8 *hash);
|
||||
void generate_ecdsa(u8 *R, u8 *S, const u8 *k, u8 *hash);
|
||||
|
||||
void ec_priv_to_pub(u8 *k, u8 *Q);
|
||||
void ec_priv_to_pub(const u8 *k, u8 *Q);
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user