sk-ed25519.h 333 B

123456789101112131415
  1. #ifndef DROPBEAR_SK_ED25519_H_
  2. #define DROPBEAR_SK_ED25519_H_
  3. #include "includes.h"
  4. #if DROPBEAR_SK_ED25519
  5. #include "buffer.h"
  6. #include "ed25519.h"
  7. int buf_sk_ed25519_verify(buffer *buf, const dropbear_ed25519_key *key, const buffer *data_buf, const char* app, unsigned int applen);
  8. #endif
  9. #endif /* DROPBEAR_SK_ED25519_H_ */