sk-ecdsa.h 310 B

123456789101112131415
  1. #ifndef DROPBEAR_SK_ECDSA_H_
  2. #define DROPBEAR_SK_ECDSA_H_
  3. #include "includes.h"
  4. #if DROPBEAR_SK_ECDSA
  5. #include "buffer.h"
  6. #include "signkey.h"
  7. int buf_sk_ecdsa_verify(buffer *buf, const ecc_key *key, const buffer *data_buf, const char* app, unsigned int applen);
  8. #endif
  9. #endif /* DROPBEAR_SK_ECDSA_H_ */