mirror of
https://github.com/martravi/wiiqt6.git
synced 2024-11-22 21:29:15 +01:00
cc09d9e72f
git-svn-id: http://wiiqt.googlecode.com/svn/trunk@37 389f4c8b-5dfe-645f-db0e-df882bc27289
10 lines
310 B
C
10 lines
310 B
C
#ifndef EC_H
|
|
#define EC_H
|
|
#include "includes.h"
|
|
|
|
int check_ec( quint8 *ng, quint8 *ap, quint8 *sig, quint8 *sig_hash );
|
|
void make_ec_cert( quint8 *cert, quint8 *sig, char *signer, char *name, quint8 *priv, quint32 key_id );
|
|
void generate_ecdsa( quint8 *R, quint8 *S, quint8 *k, quint8 *hash );
|
|
|
|
#endif // EC_H
|