~ubuntu-branches/ubuntu/utopic/dropbear/utopic-proposed

« back to all changes in this revision

Viewing changes to libtomcrypt/src/headers/tomcrypt.h

  • Committer: Bazaar Package Importer
  • Author(s): Gerrit Pape, Matt Johnston, Gerrit Pape
  • Date: 2008-03-27 20:08:06 UTC
  • mfrom: (1.4.1 upstream) (9 hardy)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20080327200806-c1hhdgt3ht2gk496
Tags: 0.51-1
[ Matt Johnston ]
* New upstream release.
  - Wait until a process exits before the server closes a connection,
    so that an exit code can be sent. This fixes problems with exit
    codes not being returned, which could cause scp to fail (closes:
    #448397, #472483).

[ Gerrit Pape ]
* debian/dropbear.postinst: don't print an error message if the
  update-service program is not installed (thx Matt).

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
#endif
17
17
 
18
18
/* version */
19
 
#define CRYPT   0x0105
20
 
#define SCRYPT  "1.05"
 
19
#define CRYPT   0x0116
 
20
#define SCRYPT  "1.16"
21
21
 
22
22
/* max size of either a cipher/hash block or symmetric key [largest of the two] */
23
23
#define MAXBLOCKSIZE  128
60
60
   CRYPT_PK_NOT_FOUND,     /* Key not found in keyring */
61
61
   CRYPT_PK_INVALID_SIZE,  /* Invalid size input for PK parameters */
62
62
 
63
 
   CRYPT_INVALID_PRIME_SIZE/* Invalid size of prime requested */
 
63
   CRYPT_INVALID_PRIME_SIZE,/* Invalid size of prime requested */
 
64
   CRYPT_PK_INVALID_PADDING /* Invalid padding on input */
64
65
};
65
66
 
66
67
#include <tomcrypt_cfg.h>
70
71
#include <tomcrypt_mac.h>
71
72
#include <tomcrypt_prng.h>
72
73
#include <tomcrypt_pk.h>
 
74
#include <tomcrypt_math.h>
73
75
#include <tomcrypt_misc.h>
74
76
#include <tomcrypt_argchk.h>
75
77
#include <tomcrypt_pkcs.h>
82
84
 
83
85
 
84
86
/* $Source: /cvs/libtom/libtomcrypt/src/headers/tomcrypt.h,v $ */
85
 
/* $Revision: 1.7 $ */
86
 
/* $Date: 2005/06/19 18:03:25 $ */
 
87
/* $Revision: 1.20 $ */
 
88
/* $Date: 2006/11/26 01:45:14 $ */