comparison dss.h @ 640:76097ec1a29a dropbear-tfm

- Bring in original tomsfastmath patch against 0.52 from Peter Turczak in 2008
author Matt Johnston <matt@ucc.asn.au>
date Mon, 21 Nov 2011 19:19:57 +0800
parents fe6bca95afa7
children 2b1bb792cd4d
comparison
equal deleted inserted replaced
518:ce104c8b0be1 640:76097ec1a29a
32 32
33 #define DSS_SIGNATURE_SIZE 4+SSH_SIGNKEY_DSS_LEN+4+2*SHA1_HASH_SIZE 33 #define DSS_SIGNATURE_SIZE 4+SSH_SIGNKEY_DSS_LEN+4+2*SHA1_HASH_SIZE
34 34
35 struct DSS_key { 35 struct DSS_key {
36 36
37 mp_int* p; 37 fp_int* p;
38 mp_int* q; 38 fp_int* q;
39 mp_int* g; 39 fp_int* g;
40 mp_int* y; 40 fp_int* y;
41 mp_int* x; 41 fp_int* x;
42 42
43 }; 43 };
44 44
45 typedef struct DSS_key dss_key; 45 typedef struct DSS_key dss_key;
46 46