mirror of
https://github.com/naehrwert/scetool.git
synced 2025-04-25 06:07:47 +00:00
11 lines
214 B
C
11 lines
214 B
C
![]() |
#ifndef _ECDSA_H_
|
||
|
#define _ECDSA_H_
|
||
|
|
||
|
int ecdsa_set_curve(u32 type);
|
||
|
void ecdsa_set_pub(u8 *Q);
|
||
|
void ecdsa_set_priv(u8 *k);
|
||
|
int ecdsa_verify(u8 *hash, u8 *R, u8 *S);
|
||
|
void ecdsa_sign(u8 *hash, u8 *R, u8 *S);
|
||
|
|
||
|
#endif
|