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

« back to all changes in this revision

Viewing changes to cipher/blowfish.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:
33
33
#include <stdio.h>
34
34
#include <stdlib.h>
35
35
#include <string.h>
36
 
#include <assert.h>
37
36
#include "types.h"
38
37
#include "g10lib.h"
39
38
#include "cipher.h"
602
601
  {
603
602
    "BLOWFISH", NULL, NULL, BLOWFISH_BLOCKSIZE, 128,
604
603
    sizeof (BLOWFISH_context),
605
 
    bf_setkey, encrypt_block, decrypt_block, NULL, NULL
 
604
    bf_setkey, encrypt_block, decrypt_block
606
605
  };