Mercurial > dropbear
diff dropbearkey.c @ 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 | e430a26064ee |
children | 2b1bb792cd4d |
line wrap: on
line diff
--- a/dropbearkey.c Wed Nov 12 13:13:00 2008 +0000 +++ b/dropbearkey.c Mon Nov 21 19:19:57 2011 +0800 @@ -24,24 +24,24 @@ /* The format of the keyfiles is basically a raw dump of the buffer. Data types * are specified in the transport draft - string is a 32-bit len then the - * non-null-terminated string, mp_int is a 32-bit len then the bignum data. + * non-null-terminated string, fp_int is a 32-bit len then the bignum data. * The actual functions are buf_put_rsa_priv_key() and buf_put_dss_priv_key() * RSA: * string "ssh-rsa" - * mp_int e - * mp_int n - * mp_int d - * mp_int p (newer versions only) - * mp_int q (newer versions only) + * fp_int e + * fp_int n + * fp_int d + * fp_int p (newer versions only) + * fp_int q (newer versions only) * * DSS: * string "ssh-dss" - * mp_int p - * mp_int q - * mp_int g - * mp_int y - * mp_int x + * fp_int p + * fp_int q + * fp_int g + * fp_int y + * fp_int x * */ #include "includes.h"