~ubuntu-branches/ubuntu/precise/dropbear/precise

« back to all changes in this revision

Viewing changes to libtomcrypt/demos/timing.c

  • Committer: Bazaar Package Importer
  • Author(s): Gerrit Pape
  • Date: 2007-03-02 20:48:18 UTC
  • mfrom: (1.3.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070302204818-ozmbou2sbyj7dus5
Tags: 0.49-1
* new upstream release, fixes
  * CVE-2007-1099: dropbear dbclient insufficient warning on hostkey
    mismatch (closes: #412899).
  * dbclient uses static "Password:" prompt instead of using the server's
    prompt (closes: #394996).
* debian/control: Suggests: openssh-client, not ssh (closes: #405686);
  Standards-Version: 3.7.2.2.
* debian/README.Debian: ssh -> openssh-server, openssh-client; remove
  'Replacing OpenSSH "sshd" with Dropbear' part, this is simply done by not
  installing the openssh-server package.
* debian/README.runit: runsvstat -> sv status.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
int main(void)
4
4
{
 
5
 
5
6
init_timer();
6
7
reg_algs();
 
8
 
 
9
#ifdef USE_LTM
 
10
   ltc_mp = ltm_desc;
 
11
#elif defined(USE_TFM)
 
12
   ltc_mp = tfm_desc;
 
13
#elif defined(USE_GMP)
 
14
   ltc_mp = gmp_desc;
 
15
#else
 
16
   extern ltc_math_descriptor EXT_MATH_LIB;
 
17
   ltc_mp = EXT_MATH_LIB;
 
18
#endif
 
19
 
7
20
time_keysched();
8
21
time_cipher();
9
22
time_cipher2();
10
23
time_cipher3();
 
24
time_cipher4();
11
25
time_hash();
12
26
time_macs();
13
27
time_encmacs();
16
30
time_sqr();
17
31
time_rsa();
18
32
time_ecc();
19
 
time_dh();
 
33
#ifdef USE_LTM
 
34
time_katja();
 
35
#endif
20
36
return EXIT_SUCCESS;
21
37
 
22
38
}
23
39
 
24
40
/* $Source: /cvs/libtom/libtomcrypt/demos/timing.c,v $ */
25
 
/* $Revision: 1.17 $ */
26
 
/* $Date: 2005/06/23 02:16:26 $ */
 
41
/* $Revision: 1.61 $ */
 
42
/* $Date: 2006/12/03 03:08:35 $ */