~ubuntu-branches/ubuntu/raring/libgcrypt11/raring

« back to all changes in this revision

Viewing changes to cipher/des.c

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2008-07-02 18:32:45 UTC
  • mfrom: (1.1.5 upstream) (2.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20080702183245-b1p9zumbhmq9wk4g
Tags: 1.4.1-1ubuntu1
* Merge from Debian unstable.
* Remaining Ubuntu changes:
  - Add libgcrypt11-udeb package.
  - Add clean-la.mk, and add a symlink for the .la
* Ubuntu changes dropped:
  - Build-Depends changes.
  - Drop patch 20_socket_nsl_linkage.diff, basically applied upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1091
1091
gcry_cipher_spec_t _gcry_cipher_spec_des =
1092
1092
  {
1093
1093
    "DES", NULL, NULL, 8, 64, sizeof (struct _des_ctx),
1094
 
    do_des_setkey, do_des_encrypt, do_des_decrypt, NULL, NULL
 
1094
    do_des_setkey, do_des_encrypt, do_des_decrypt
1095
1095
  };
1096
1096
 
1097
1097
static gcry_cipher_oid_spec_t oids_tripledes[] =
1107
1107
gcry_cipher_spec_t _gcry_cipher_spec_tripledes =
1108
1108
  {
1109
1109
    "3DES", NULL, oids_tripledes, 8, 192, sizeof (struct _tripledes_ctx),
1110
 
    do_tripledes_setkey, do_tripledes_encrypt, do_tripledes_decrypt, 
1111
 
    NULL, NULL
 
1110
    do_tripledes_setkey, do_tripledes_encrypt, do_tripledes_decrypt
1112
1111
  };