comparison ed25519.h @ 1674:ba6fc7afe1c5

use sigtype where appropriate
author Matt Johnston <matt@ucc.asn.au>
date Mon, 06 Apr 2020 23:18:26 +0800
parents d32bcb5c557d
children 35d504d59c05
comparison
equal deleted inserted replaced
1668:49cb3cf4bd6f 1674:ba6fc7afe1c5
30 30
31 #if DROPBEAR_ED25519 31 #if DROPBEAR_ED25519
32 32
33 #define CURVE25519_LEN 32 33 #define CURVE25519_LEN 32
34 34
35 typedef struct { 35 typedef struct dropbear_ED25519_Key {
36 36
37 unsigned char priv[CURVE25519_LEN]; 37 unsigned char priv[CURVE25519_LEN];
38 unsigned char pub[CURVE25519_LEN]; 38 unsigned char pub[CURVE25519_LEN];
39 39
40 } dropbear_ed25519_key; 40 } dropbear_ed25519_key;