~peter-pearse/ubuntu/natty/libgcrypt11/prop001

« back to all changes in this revision

Viewing changes to cipher/twofish.c

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2007-04-09 11:22:41 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070409112241-hzwl3tex8cmr2dkz
Tags: 1.2.4-2
* Upload to unstable.
* Drop -lgpg-error from libgcrypt-config --libs output. (Closes: #405238)
* Switch to debhelper v5 mode.
* New upstream version closes filehandles in gcry_rndlinux_gather_random().
  (Closes: #403613)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1030
1030
gcry_cipher_spec_t _gcry_cipher_spec_twofish =
1031
1031
  {
1032
1032
    "TWOFISH", NULL, NULL, 16, 256, sizeof (TWOFISH_context),
1033
 
    twofish_setkey, twofish_encrypt, twofish_decrypt,
 
1033
    twofish_setkey, twofish_encrypt, twofish_decrypt, NULL, NULL
1034
1034
  };
1035
1035
 
1036
1036
gcry_cipher_spec_t _gcry_cipher_spec_twofish128 =
1037
1037
  {
1038
1038
    "TWOFISH128", NULL, NULL, 16, 128, sizeof (TWOFISH_context),
1039
 
    twofish_setkey, twofish_encrypt, twofish_decrypt,
 
1039
    twofish_setkey, twofish_encrypt, twofish_decrypt, NULL, NULL
1040
1040
  };